import type { DataSource } from 'typeorm'; import type { NAuthConfig } from '../../interfaces/config.interface'; import type { NAuthLogger } from '../nauth-logger'; /** * Runs nauth-toolkit migrations automatically on startup (zero consumer burden). * * @remarks * This dynamically loads the database-specific adapter package and asks it to run its * own adapter-owned migrations into the provided `DataSource`. */ export declare function runNAuthMigrationsOnStartup(config: NAuthConfig, dataSource: DataSource, logger: NAuthLogger): Promise; //# sourceMappingURL=run-nauth-migrations.d.ts.map