/**
 * Migration Helper Script
 * Assists with gradual migration of imports and function calls
 */
interface MigrationStats {
    total: number;
    migrated: number;
    remaining: number;
    files: {
        needsMigration: string[];
        alreadyMigrated: string[];
    };
}
declare class MigrationHelper {
    /**
     * Analyze current migration status
     */
    analyzeMigrationStatus(rootDir: string): Promise<MigrationStats>;
    /**
     * Check if file has old import style
     */
    private hasOldImport;
    /**
     * Check if file has new import style
     */
    private hasNewImport;
    /**
     * Generate migration report
     */
    generateReport(stats: MigrationStats): string;
}
export declare const migrationHelper: MigrationHelper;
export {};
//# sourceMappingURL=migrationHelper.d.ts.map