import { Functional } from '../../parts/functional'; import { MapStore, EventBus } from '../../../services'; export interface IHtmlSyntaxIntegrator { } export declare class HtmlSyntaxIntegrator implements IHtmlSyntaxIntegrator { private _mapStore; private _eventBus; private _functional; constructor(_mapStore: MapStore, _eventBus: EventBus, _functional: Functional); getVariableValue(key: string, storeKey?: string): any; }