import { ORMConfig, TableDefinition } from '../shared/types'; export declare class TextMigrations { private config; constructor(config: ORMConfig); /** * Generate text description of all tables */ generateText(tables: TableDefinition[]): string; /** * Generate text for a single table */ private generateTableText; /** * Format field information */ private formatField; /** * Get human-readable type description */ private getTypeDescription; /** * Format default value for display */ private formatDefaultValue; /** * Format index information */ private formatIndexes; } //# sourceMappingURL=text-migrations.d.ts.map