/** * CLI Entry Point — Program Setup + Command Registration * * This module creates the Commander program, sets up global options, * registers all command modules, and handles argv preprocessing. * The actual `cli.ts` bin entry point is a thin wrapper around this. */ import { Command } from 'commander'; export declare function createProgram(): Command; /** * Main CLI execution — preprocess args and parse. */ export declare function main(): Promise; //# sourceMappingURL=index.d.ts.map