import { IStorage } from '../types/common'; /** * Implements IStorage using an in-memory object. */ declare class MemoryStorage implements IStorage { storage: any; constructor(); getItem(key: string): Promise; setItem(key: string, value: string): Promise; removeItem(key: string): Promise; } export { MemoryStorage }; //# sourceMappingURL=memory-storage.d.ts.map