/** * One-time migrations that run on startup. */ /** * Print deprecation warnings and wait for keypress. */ export declare function showDeprecationWarnings(warnings: string[]): Promise; /** * Run all migrations. Called once on startup. * * @returns Object with migration results and deprecation warnings */ export declare function runMigrations(cwd: string): { migratedAuthProviders: string[]; deprecationWarnings: string[]; }; //# sourceMappingURL=migrations.d.ts.map