import type { CachePayload, CacheStore } from "../types.js"; export interface FilesystemCacheStoreOptions { baseDir: string; } export declare class FilesystemCacheStore implements CacheStore { private baseDir; private localAdapterPromise; constructor(options: FilesystemCacheStoreOptions); private getLocalFS; get(key: string): Promise; set(key: string, value: CachePayload): Promise; delete(key: string): Promise; deleteByPrefix(prefix: string): Promise; clear(): Promise; destroy(): Promise; private filePathForKey; private ensureDir; private readFileForKey; } //# sourceMappingURL=filesystem-store.d.ts.map