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