/** * CLI entry point. * Sets up Commander.js program and registers subcommands. */ import { Command } from 'commander'; /** * Create and configure the CLI program */ export declare function createProgram(): Command; /** * Run the CLI with given arguments */ export declare function run(args?: string[]): Promise; //# sourceMappingURL=index.d.ts.map