import { BizComponentEntity } from '../../domain/entities/biz-component.entity'; import { WfLocalePipe } from '../../i18n/pipe/wf-process-editor-locale.pipe'; export declare class ActivityComponentUIState { private localePipe; constructor(localePipe: WfLocalePipe); /** * 构件列表 */ components: BizComponentEntity[]; /** * 选中构件 */ curComponent: BizComponentEntity; /** * 流程分类绑定的所有活动构件 */ allComponents: BizComponentEntity[]; /** * 构件执行时机数据绑定 */ executionCollection: { text: any; value: string; }[]; activityCollection: { text: any; value: string; }[]; }