import { spawn } from 'child_process'; export type StartedProcess = { proc: ReturnType; url: string; stop: () => Promise; stdout: string[]; stderr: string[]; }; export declare function startCliWithArgs(args: string[]): Promise; //# sourceMappingURL=start-cli.d.ts.map