import { Readable, Writable } from "node:stream"; //#region src/cli/runner.d.ts type RunCliOptions = { cwd: string; env: NodeJS.ProcessEnv; stderr: Writable; stdin: Readable; stdout: Writable; }; declare function runCli(argv: string[], io: RunCliOptions): Promise; //#endregion export { runCli }; //# sourceMappingURL=runner.d.ts.map