import type { SchemaSnapshot } from "./differ.js"; export interface MigrationFolder { name: string; dirPath: string; upPath: string; downPath: string; snapshotPath: string; upContent: string; downContent: string; snapshot: SchemaSnapshot | null; } export declare function loadMigrationFolders(migrationsDir: string): Promise; export declare function loadLatestSnapshotFromFolders(migrationsDir: string): Promise; //# sourceMappingURL=migration-loader.d.ts.map