interface MigrateOptions { yes?: boolean; dryRun?: boolean; } /** * Updates import paths in a file between ui/ and tambo/ locations * @param content File content to update * @param targetLocation Target location: 'tambo' (default) or 'ui' */ export declare function updateImportPaths(content: string, targetLocation?: "tambo" | "ui"): string; /** * Migrates components from legacy to new location */ export declare function handleMigrate(options?: MigrateOptions): Promise; export {}; //# sourceMappingURL=migrate.d.ts.map