declare class MemoryStore { db: Map; constructor(); get(key: string): Promise; put(key: string, value: string): Promise>; del(key: string): Promise; } export = MemoryStore;