/** * CommandMate CLI Program Construction * Issue #96: npm install CLI support * Issue #1195: Extracted from index.ts so the program can be built without parsing argv */ import { Command } from 'commander'; /** * Build the CommandMate CLI program. * * Constructing the program must stay free of side effects (no argv parsing, no process.exit) * so it can be exercised in tests; src/cli/index.ts owns the parse() call. * * @returns A fully configured commander program */ export declare function buildProgram(): Command; //# sourceMappingURL=program.d.ts.map