export declare class MemoizationCache { private cache; get(key: string): T | undefined; set(key: string, value: T): void; clear(): void; }