export interface CliIO { log: (line: string) => void; error: (line: string) => void; } /** * Core dispatch, factored out of the process entry point so tests can * drive it in-process (real filesystem via temp dirs, no subprocess * spawning, no mocking process.argv/stdout). */ export declare function run(argv: string[], io: CliIO): Promise; //# sourceMappingURL=run.d.ts.map