export type MigrateResult = { success: boolean; message?: string; error?: Error; }; export declare function migrate(): Promise;