/** * Optional SQLite helper for parsers that need database access (Goose, Zed). * Uses node:sqlite (Node 22+) with graceful degradation. */ export declare function isSqliteAvailable(): boolean; export interface SqliteRow { [key: string]: unknown; } export declare function queryAll(dbPath: string, sql: string, params?: unknown[]): SqliteRow[]; //# sourceMappingURL=sqlite.d.ts.map