import { ISApi } from './typings';
export declare class MemoryStorage implements ISApi.Storage {
    get(key: any): any;
    set(key: string, data: ISApi.dataCache): ISApi.dataCache;
    static isFresh(lastUpdate: any, howLongIsItFresh: any): boolean;
}
