export interface MigrateOptions { readonly cliName?: string; readonly packageManager?: string; readonly quiet?: boolean; } export type MigrateCallback = typeof process.exit; export declare const migrate: (cmd: MigrateOptions, callback?: MigrateCallback) => Promise;