import type { CacheBackend } from "./types"; export declare class SqliteCache implements CacheBackend { private readonly path; private db; constructor(path?: string); private ensureDb; get(key: string): Promise; set(key: string, value: unknown, ttlSeconds?: number): Promise; private delete; clear(): Promise; } export declare const sqliteCache: SqliteCache; //# sourceMappingURL=sqlite.d.ts.map