import type { LogEntry, LogQuery, LogQueryResult } from "@skaile/workspaces/types"; import type { LogSink } from "./types.js"; export interface SqliteSinkOptions { path: string; } export declare class SqliteSink implements LogSink { private db; private insertStmt; private insertMany; private closed; constructor(opts: SqliteSinkOptions); write(entry: LogEntry): void; writeBatch(entries: LogEntry[]): void; close(): void; query(q: LogQuery): LogQueryResult; private toRow; } //# sourceMappingURL=sqlite-sink.d.ts.map