/** * Simple Map-based LRU cache * * @param max - Maximum size of cache */ export declare class LruCache extends Map { max: number; constructor(max: number); get(key: K): V | undefined; set(key: K, value: V): this; }