import type { Dialect, Migration } from './types'; /** Find every Prisma `migration.sql` under `migrationsDir`, sorted by name. */ export declare function findMigrationFiles(migrationsDir: string, cwd?: string): string[]; /** Read and parse a single `migration.sql` file. */ export declare function loadMigration(filePath: string, dialect: Dialect, cwd?: string): Migration; /** Load and parse every migration found under `migrationsDir`. */ export declare function loadMigrations(migrationsDir: string, dialect: Dialect, cwd?: string): Migration[]; //# sourceMappingURL=migration.d.ts.map