export declare class LruCache { private values; private maxEntries; get(key: string): T | null; put(key: string, value: T): void; }