import { Base, Type } from "./type"; import { LinkedListNode$1 } from "./LinkedListNode$1"; /** * @hidden */ export declare class LRUCacheItem$2 extends Base { static $t: Type; protected $tKey: Type; protected $tValue: Type; constructor($tKey: Type, $tValue: Type); a: TKey; b: TValue; c: LinkedListNode$1>; }