import type { AuditLog } from '@pikku/core/services'; import type { Kysely } from 'kysely'; export interface CreateAuditedKyselyOptions { audit: AuditLog; auditReads?: boolean; eventType?: string; transactionId?: string | null; queryIdPrefix?: string; } export declare function createAuditedKysely(db: Kysely, options: CreateAuditedKyselyOptions): Kysely;