import type { DatabaseSync } from 'node:sqlite'; /** * Load the active runtime's synchronous SQLite implementation lazily. Keeping this off writer.ts top * level lets codebase-index tools register at CLI boot without eagerly loading * SQLite. Runtimes without `node:sqlite` or `bun:sqlite` fail only when the index is used. */ export declare function loadDatabaseSync(): typeof DatabaseSync; export declare function runSqliteWithRetry(fn: () => T): T; //# sourceMappingURL=sqlite-runtime.d.ts.map