interface Options { moduleURL: string; argv?: string[]; } /** * Launches the CLI. * * @param options - Options. * @returns A promise that resolves when the CLI has been launched. */ export declare function launchCLI(options: Options): Promise; export {};