import { ISynchronousCacheType } from '../../types/cache.types.js'; export declare class MemoryStorage implements ISynchronousCacheType { private memCache; getItem(key: string): T | undefined; setItem(key: string, content: any): void; clear(): void; }