import { ICache } from './ICache';
export declare class DefaultCache implements ICache {
    private map;
    get(key: string): Promise<string>;
    set(key: string, jsonValue: string): Promise<void>;
    remove(key: string): Promise<void>;
}
