/** * QA360 AI Command * * Manage AI provider integration for test generation. * Supports DeepSeek, Ollama, OpenAI, Anthropic with automatic selection. * * DeepSeek is recommended for best value (GPT-4 level at 95% lower cost). */ import { Command } from 'commander'; /** * List all available AI providers */ export declare function aiListCommand(): Promise; /** * Use a specific AI provider */ export declare function aiUseCommand(provider: string, options?: { verify?: boolean; }): Promise; /** * Benchmark all available providers */ export declare function aiBenchmarkCommand(options?: { prompt?: string; }): Promise; /** * Generate tests using the best available provider */ export declare function aiGenerateCommand(prompt: string, options?: { provider?: string; type?: string; json?: boolean; pack?: boolean; output?: string; }): Promise; /** * Show AI configuration */ export declare function aiConfigCommand(): Promise; /** * Create AI commands */ export declare function createAICommands(): Command;