import { CacheStore } from '../../types';
export declare class MemoryCache implements CacheStore {
    private cache;
    get(key: string): any;
    set(key: string, value: any): void;
    delete(key: string): void;
    clear(): void;
}
