import type { MigrationConfig, MigrationResult } from './types.js'; export declare class MigrationTool { private config; private converter; private importResolver; constructor(config: MigrationConfig); migrate(files: string[]): Promise; migrateFile(filePath: string): Promise; generatePreview(results: MigrationResult[]): string; test(files: string[]): Promise; /** * Determine migration status based on actual migration results */ private determineMigrationStatus; /** * Update imported style files by removing converted properties from makeStyles calls */ private updateImportedStyleFiles; } //# sourceMappingURL=migration-tool.d.ts.map