export interface MigrateCliOpts { dryRun?: boolean; apply?: boolean; rollback?: boolean; listBackups?: boolean; deleteBackup?: string; to?: string; } export declare function migrateCommand(opts: MigrateCliOpts): Promise;