import type { SQLOptions } from 'bun'; import { SQL } from 'bun'; import { entityKind } from "../entity.js"; import { PgDatabase } from "../pg-core/db.js"; import { type DrizzleConfig } from "../utils.js"; import type { BunSQLQueryResultHKT } from "./session.js"; export declare class BunSQLDatabase = Record> extends PgDatabase { static readonly [entityKind]: string; } export declare function drizzle = Record, TClient extends SQL = SQL>(...params: [ TClient | string ] | [ TClient | string, DrizzleConfig ] | [ (DrizzleConfig & ({ connection: string | ({ url?: string; } & SQLOptions); } | { client: TClient; })) ]): BunSQLDatabase & { $client: TClient; }; export declare namespace drizzle { function mock = Record>(config?: DrizzleConfig): BunSQLDatabase & { $client: '$client is not available on drizzle.mock()'; }; }