/** * A file-based cache implementation that stores data in JSON files */ import { CacheProvider } from './cache-provider'; export declare class LocalCache implements CacheProvider { private cacheDir; constructor(cacheDir?: string); private getCachePath; get(key: string): Record | null; set(key: string, value: Record): void; invalidate(key: string): boolean; clear(): void; isAvailable(): boolean; } export declare const FileCache: typeof LocalCache; //# sourceMappingURL=file-cache.d.ts.map