/** * Analyze Command * Scans PHP files for deprecations and suggests improvements */ /** * Options for the analyze command */ export interface AnalyzeOptions { phpVersion: string; output: string; model: string; } /** * Execute the analyze command * @param targetPath - Path to analyze * @param options - Command options */ export declare function analyzeCommand(targetPath: string, options: AnalyzeOptions): Promise; //# sourceMappingURL=analyze.d.ts.map