import type { CacheProvider, CacheEntry } from '../../core/cache-provider.js'; export declare class NodeCacheProvider implements CacheProvider { private cache; readonly cacheFilePath: string; constructor(cacheLocation: string); get(key: string): Promise; set(key: string, entry: CacheEntry): Promise; remove(key: string): Promise; keys(): Promise; save(): Promise; } //# sourceMappingURL=node-cache-provider.d.ts.map