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