import { z } from 'zod'; import { DepFixerApiClient } from '../api-client.js'; export declare const analyzeToolName = "depfixer_analyze"; export declare const analyzeToolDescription = "Analyze a package.json for dependency conflicts, version mismatches, and health issues.\n\nWith API key: Returns full analysis with fix recommendations and recommended versions.\nWithout API key: Returns issues found but hides recommended versions (audit mode).\n\nInput: The raw content of a package.json file as a JSON string.\nOutput: Health score (0-100), issue summary by severity, and detailed conflict list."; export declare const analyzeToolSchema: { packageJson: z.ZodString; }; export declare function handleAnalyze(client: DepFixerApiClient, hasApiKey: boolean, args: { packageJson: string; }): Promise; //# sourceMappingURL=analyze.d.ts.map