import { Command } from 'commander'; export interface AnalyzeCommandOptions { config?: string; diff?: string; target?: string[]; scope?: string; preset?: string; outputDir?: string; provider?: string; model?: string; formats?: string; verbose?: boolean; quiet?: boolean; dryRun?: boolean; checkExisting?: boolean; preprocess?: boolean; baseline?: string; feedback?: boolean; cache?: boolean; cacheDir?: string; noCache?: boolean; clearCache?: boolean; } export declare function runAnalyze(options: AnalyzeCommandOptions): Promise; export declare function createAnalyzeCommand(): Command; //# sourceMappingURL=analyze.d.ts.map