/** * Core CLI logic - Commander program execution. * * This layer: * - Creates the CLI context * - Sets up the Commander program * - Parses arguments and executes commands * - Handles Commander-specific errors (help/version display) * * This is the primary entry point for unit testing with mocked streams. */ export type RunEnv = { env: Record; stdout: NodeJS.WritableStream; stderr: NodeJS.WritableStream; }; export declare function runCli(argv: string[], { env, stdout, stderr }: RunEnv): Promise; //# sourceMappingURL=run.d.ts.map