export declare class StorageService { static Constants: { SUBSCRIBED: string; COOKIE: string; }; static get(key: string): Promise; static set(key: string, value: string): Promise; static remove(key: string): Promise; }