export default class SessionStorage { _inMemoryStorage: Record; set(key: string, value: any): Promise; get(key: string): Promise; remove(key: string): Promise; }