export interface IStorage { readonly SUPPORTED: boolean; set(key: string, data: string, options?: object): void; get(key: string): string | null; remove(key: string, options?: object): void; }