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