export declare class LRUCache<K, V> {
    private max;
    private cache;
    constructor(max?: number);
    get(key: K): V | undefined;
    set(key: K, val: V): void;
    first(): K | undefined;
    clear(): void;
}
