export interface RefreshDatabaseOptions { connection?: string; seed?: boolean; seeder?: new () => { run(): Promise; }; } /** * Truncate all application tables before each test (requires an active default connection). * * @param options - Optional seeder hook after truncate. */ export declare function refreshDatabase(options?: RefreshDatabaseOptions): void; //# sourceMappingURL=refreshDatabase.d.ts.map