import * as i0 from "@angular/core"; /** * Service in charge of local storage */ export declare class LocalStorageService { /** * Method for setting an entry in local storage * @param key the key * @param value the value for the provided key */ set(key: string, value: any): void; /** * Method for getting an entry * @param key the given key * @returns the entry's value otherwise null */ get(key: string): string | null; /** * Method for removing an entry * @param key the given key */ remove(key: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }