import { UserPropertiesStorageService } from '@sowatech/shared/user-properties-storage'; import * as i0 from '@angular/core'; declare class LocalStorageService extends UserPropertiesStorageService { private readonly config; constructor(); private userPrefix; private getPrefixedKey; setUserName(username: string | undefined): void; clearUserName(): void; save(key: string, value: T): void; load(key: string): T | null; delete(key: string): void; /** * Liest den Wert aus und gibt ihn geparsed zurück. * Der Key wird mit dem Prefix versehen. */ getItem(key: string): T | null; /** * Stringified den value und schreibt ihn in den Localstorage. * Der Key wird mit dem Prefix versehen. */ setItem(key: string, value: any): void; removeItem(key: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export { LocalStorageService };