export declare class Cache extends Map {
    #private;
    private constructor();
    static get hits(): number;
    static get lookups(): number;
    static instance(): Cache;
    static set<V>(key: string, value: V): void;
    static get<V>(key: string): V | undefined;
    static disable(): void;
    static enable(): void;
}
