/** * Migration status core module. * @task T4783 */ export interface MigrateResult { from: string; to: string; migrations: Array<{ name: string; applied: boolean; }>; dryRun: boolean; } /** Check/report schema migration status. */ export declare function getMigrationStatus(projectRoot: string, opts?: { target?: string; dryRun?: boolean; }): Promise; //# sourceMappingURL=migrate.d.ts.map