import { BaseInterface } from './BaseInterface'; export declare class Local implements BaseInterface { private localStorage; constructor(localStorage: Storage); delete(group: string, key: string): void; get(group: string, key: string): Object; isExist(group: string, key: string): boolean; set(group: string, key: string, value: any): void; }