export declare class Cache {
    private store;
    constructor(store?: {});
    set(key: string | object, value?: any): void;
    get(key?: string): any;
    delete(key: string): void;
    clear(): void;
}
export declare const cache: Cache;
export default cache;
