import { OnInit, EventEmitter, TemplateRef, ChangeDetectorRef } from '@angular/core'; import { TypeConverter } from '@farris/ide-property-panel'; import { FormGroup } from '@angular/forms'; import { AssignPerformerConfig } from './assign-performer-config.entity'; import { WfLocalePipe } from '../../i18n/pipe/wf-process-editor-locale.pipe'; export declare class AssignPerformerConfigComponent implements OnInit { private cdr; private localeId; private resources; private localePipe; cls: string; closeModal: EventEmitter; submitModal: EventEmitter; assingPerformerConfigForm: FormGroup; private config; value: AssignPerformerConfig; modalFooter: TemplateRef; allowGlobalAssign: boolean; operatorCollection: { text: any; value: string; }[]; operator: string; organizationLevelCollection: { value: string; text: any; orgId: string; }[]; organizationLevel: string; includeChildren: boolean; modalConfig: { title: any; width: number; height: number; showButtons: boolean; }; constructor(cdr: ChangeDetectorRef, localeId: string, resources: any, localePipe: WfLocalePipe); ngOnInit(): void; clickOK(): void; clickCancel(): void; valueChange(event: any): void; } export declare class AssignConfigConverter implements TypeConverter { private localePipe; constructor(localePipe: WfLocalePipe); convertTo(data: any): string; }