import type { TableConfig } from "@bungres/orm"; /** Snapshot stored on disk after each generate */ export interface SchemaSnapshot { tables: Record; enums: Record; views: Record; } export interface DiffResult { statements: string[]; summary: string[]; warnings: string[]; } export declare function diffSchemas(prev: SchemaSnapshot, next: SchemaSnapshot): DiffResult; export declare function topoSortConfigs(tables: TableConfig[]): TableConfig[]; //# sourceMappingURL=differ.d.ts.map