import { Command } from "commander"; export type MigrationStatus = "LATEST" | "OUTDATED" | "CUSTOMIZED" | "MISSING"; export interface FileMigration { path: string; status: MigrationStatus; currentVersion: string | null; targetVersion: string; reason?: string; } export declare function createMigrateCommand(): Command; export declare const migrateCommand: Command; //# sourceMappingURL=migrate.d.ts.map