import { Kysely, type KyselyPlugin } from 'kysely'; import type { PGlite } from '@electric-sql/pglite'; export interface CreatePGliteKyselyOptions { db: PGlite; camelCase?: boolean; plugins?: KyselyPlugin[]; } export declare function createPGliteKysely(options: CreatePGliteKyselyOptions): Kysely;