/** * CLI Entry Point - Command Routing and Global Flags * * Routes commands to appropriate handlers and handles global flags. */ import { Command } from "commander"; /** * Create and configure the CLI program */ export declare function createProgram(): Command; /** * Run the CLI program */ export declare function run(argv?: string[]): Promise;