export declare class SessionStorage { static get(key: string): string; static set(key: string, value: string): void; static getObject(key: string): any; static setObject(key: string, value: any): void; static remove(key: string): void; static clear(): void; }