/** In memory storage. * This in memory storage implements the methods of localForage. */ export declare class Storage { storage: { [key: string]: any; }; constructor(); getItem: (key: string) => Promise; setItem: (key: string, val: T) => Promise; removeItem: (key: string) => Promise; clear: () => Promise; }