import { SQL } from "bun"; import type { DatabaseConnection } from "./baseRepository"; interface CreateBunSqlPoolOptions { url: string; max?: number; idleTimeout?: number; maxLifetime?: number; connectionTimeout?: number; } declare function createBunSqlPool(options: CreateBunSqlPoolOptions): InstanceType; declare function bindBunSql(sql: DatabaseConnection): DatabaseConnection; export type { CreateBunSqlPoolOptions }; export { bindBunSql, createBunSqlPool };