import type { DriverFactory } from "@slonik/driver"; import type { TestFn } from "ava"; export type TestContextType = { dsn: string; testDatabaseName: string; }; export declare const createTestRunner: (driverFactory: DriverFactory, name: string) => { test: TestFn; }; //# sourceMappingURL=createTestRunner.d.ts.map