import { type Dialect, type Driver, type DatabaseIntrospector, type Kysely, type DialectAdapter, type QueryCompiler } from "kysely"; /** Kysely Dialect backed by `bun:sqlite`. */ export declare class BunSqliteDialect implements Dialect { private readonly url; constructor(url: string); createDriver(): Driver; createQueryCompiler(): QueryCompiler; createAdapter(): DialectAdapter; createIntrospector(db: Kysely>): DatabaseIntrospector; } /** True when running under the Bun runtime (where `bun:sqlite` is available). */ export declare function isBun(): boolean; //# sourceMappingURL=bun-sqlite-dialect.d.ts.map