export declare class MemoryStorage { private storage; set(key: string, value: any): void; get(key: string): any; remove(key: string): void; }