import { Kysely, type KyselyPlugin } from 'kysely'; import type { SyncSqliteDatabase } from './sqlite-runtime.js'; export interface CreateSqliteKyselyOptions { db: SyncSqliteDatabase; camelCase?: boolean; plugins?: KyselyPlugin[]; } export declare function createSqliteKysely(options: CreateSqliteKyselyOptions): Kysely;