import { DiagramTemplateService } from './diagram-template.service'; import { LayerService } from './layer.service'; import { VariableNameMappingListDto } from '../../../shared/service-proxies/service-proxies'; export declare class DiagramCompileService { private readonly templateService; private readonly layerService; private readonly compileDiagramDivId; constructor(templateService: DiagramTemplateService, layerService: LayerService); build(modelJSON: string, width: number, height: number, variables: Array): string; getVariableNames(nodeDataArray: any): Array; private getElementVariableNames; private elementFinished; }