import { BaseInterface } from './BaseInterface'; export declare class Session implements BaseInterface { private sessionStorage; constructor(sessionStorage: 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; }