import { IAsynchronousCacheType } from '../../types/cache.types.js'; export declare class FsJsonStorage implements IAsynchronousCacheType { jsonFilePath: string; constructor(jsonFilePath: string); getItem(key: string): Promise; setItem(key: string, content: any): Promise; clear(): Promise; private createEmptyCache; private setCache; private getCacheObject; }