import type { Database, Statement } from './types'; export declare class NodeSqliteDatabase implements Database { private db; constructor(path: string, busyTimeoutMs?: number, readOnly?: boolean); exec(sql: string): void; prepare(sql: string): Statement; transaction(fn: () => T): T; close(): void; }