//#region src/client/utils/lru.d.ts declare class LRUCache { private max; private cache; constructor(max?: number); get(key: K): V | undefined; set(key: K, val: V): void; first(): K | undefined; clear(): void; } //#endregion export { LRUCache };