import type { DefaultEncodingOption, EncodingOption, Options } from 'execa'; export interface WaitForOutputOptions extends Options { timeout?: number; } /** * Starts a process and waits for the passed string to appear in the output. * When this happens the process is killed. */ export declare function waitForOutput(expectedOutput: string, command: string, args?: string[], opts?: WaitForOutputOptions): Promise; //# sourceMappingURL=wait-for-output.d.ts.map