import { z } from 'zod'; import { DepFixerApiClient } from '../api-client.js'; export declare const migrateToolName = "depfixer_migrate"; export declare const migrateToolDescription = "Plan a framework migration by analyzing current dependencies and projecting changes needed for the target version.\n\nRequires API key (DEPFIXER_API_KEY). Returns health score before/after, packages to update, breaking changes, and fix commands.\n\nExample: Migrate an Angular 16 project to Angular 18."; export declare const migrateToolSchema: { packageJson: z.ZodString; targetFramework: z.ZodString; targetVersion: z.ZodString; format: z.ZodDefault>>; }; export declare function handleMigrate(client: DepFixerApiClient, hasApiKey: boolean, args: { packageJson: string; targetFramework: string; targetVersion: string; format?: 'markdown' | 'json'; }): Promise; //# sourceMappingURL=migrate.d.ts.map