export declare class LRUCache {
    max: any;
    cache: any;
    constructor(max?: number);
    get(key: any): any;
    set(key: any, val: any): void;
    first(): any;
    clear(): void;
}
