import { OnInit, TemplateRef, EventEmitter, ChangeDetectorRef } from '@angular/core'; import { TypeConverter } from '@farris/ide-property-panel'; import { ProcessDesignerUIState } from '../../app/process-designer.uistate'; import { ProcExtendProperty } from './extend-property'; import { WfLocalePipe } from '../../i18n/pipe/wf-process-editor-locale.pipe'; export declare class ExtendPropertyComponent implements OnInit { private uiState; private cdr; private localeId; private resources; private localePipe; closeModal: EventEmitter; submitModal: EventEmitter; modalFooter: TemplateRef; value: any[]; modalConfig: { title: any; width: number; height: number; showButtons: boolean; }; procExtendProperty: Array; booleanlist: { key: any; value: string; }[]; extendPropertyList: { key: string; value: string; }; constructor(uiState: ProcessDesignerUIState, cdr: ChangeDetectorRef, localeId: string, resources: any, localePipe: WfLocalePipe); setProperty(obj: any): void; ngOnInit(): void; clickOK(): void; cancel(): void; } export declare class ExtendPropertyConverter implements TypeConverter { private localePipe; constructor(localePipe: WfLocalePipe); convertTo(data: any[]): string; }