export declare class Cache<T> {
    private data;
    private queue;
    private begin;
    private end;
    constructor(size: number);
    insert(key: string, value: T): void;
    contains(key: string): boolean;
    get(key: string): T;
    length(): number;
}
//# sourceMappingURL=cache.d.ts.map