/** * LLM Command - AI SDK provider management and testing * * Subcommands: * - providers: List available AI SDK providers * - test: Test connectivity to a provider * - validate: Validate provider configuration * - run: Run a prompt with a specific model */ export interface LLMOptions { verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; model?: string; stream?: boolean; timeout?: number; provider?: string; schema?: string; tool?: string; } export declare function execute(args: string[], options: LLMOptions): Promise;