declare class Cache {
    #private;
    constructor();
    hasKey: (key: string) => boolean;
    setValue: (key: string, value: any) => void;
    getValue: (key: string) => any;
}
export default Cache;
