export declare class LocalStorageService { getItem(key: string): string; getEncryptedItem(key: string, passphrase: any): any; setItem(key: string, value: string): void; setEncryptedItem(key: string, value: any, passphrase: string): void; removeItem(key: string): void; clear(): void; }