/** * CLI module * Handles command line argument parsing */ import { Command } from 'commander'; import type { CLIOptions } from './types.js'; /** * Create and configure the CLI program */ export declare function createCLI(): Command; /** * Parse and validate CLI options */ export declare function parseCLIOptions(program: Command): Promise; /** * Validate that required options are provided */ export declare function validateOptions(options: CLIOptions): void; //# sourceMappingURL=cli.d.ts.map