import type { DatabaseConnection } from "./baseRepository.ts"; type UnsafeQueryable = { unsafe(query: string, params?: readonly unknown[]): Promise; }; declare function createDatabaseConnection(source: UnsafeQueryable): DatabaseConnection; export type { UnsafeQueryable }; export { createDatabaseConnection };