import { AbstractStorage } from './storage'; export declare class LocalStorageService extends AbstractStorage { getItem(key: string): string | null; getItem(key: string, defaultValue: string): string; setItem(key: string, value: string): void; removeItem(key: string): void; clear(): void; }