import { LinkedListNode } from "./LinkedListNode";
import { Type } from "igniteui-react-core";
/**
 * @hidden
 */
export declare class LruCache_LruCacheNode$2<TKey, TValue> extends LinkedListNode {
    static $t: Type;
    protected $tKey: Type;
    protected $tValue: Type;
    constructor($tKey: Type, $tValue: Type);
    n: TKey;
    o: TValue;
}
