import pgpPromise from "pg-promise"; import type { StartedPostgreSqlContainer } from "testcontainers"; export declare let db: pgpPromise.IDatabase | null; export declare const initDb: (startedContainer: StartedPostgreSqlContainer) => Promise; export declare const destroyDb: () => Promise; export type UserRecord = { id: string; firstName: string; lastName: string; email: string; active: boolean; dob: string; tier: string; pointBalance: number; }; export declare const idForTestRecord: (firstname: string) => string; export declare const Users: UserRecord[]; export declare const insertUserRecords: () => Promise; //# sourceMappingURL=fixture-db.d.ts.map