type Param = { command: string; preflight?: string[] | string; postflight?: string[] | string; redeploy_file: string; port?: string | number | (string | number)[]; first_run?: boolean; debounce?: number; }; export default function startProcess({ command, preflight, postflight, redeploy_file, port, first_run, debounce, }: Param): void; export {};