import { PGlite, PGliteInterfaceExtensions, type PGliteOptions } from '@electric-sql/pglite'; import { type Dialect } from 'kysely'; export declare class KyselyPGlite { client: PGlite & PGliteInterfaceExtensions; /** * Create a new KyselyPGlite instance. * @param options `PGliteOptions` or `PGlite */ constructor(options?: PGlite | O); static create(options?: PGlite | O): Promise>; get dialect(): Dialect; }