import { ILocalStorageService } from './local-storage.interface'; export declare class LocalStorageService implements ILocalStorageService { private local; constructor(); get(key: string): Promise; set(key: string, value: any): Promise; remove(key: string): Promise; clear(): Promise; }