import type { LazyCommandLoader } from './custom-oclif-loader.js'; interface Options { moduleURL: string; argv?: string[]; lazyCommandLoader?: LazyCommandLoader; } /** * 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 {};