import { EndEventCell } from "@edp-pmf/grapheditor"; import { EndEvent, FlowNodeState } from "@edp-pmf/bpmn-model"; /** * 结束事件节点,增加状态图片信息 */ export declare class WfEndEventCell extends EndEventCell { imgUrls: { [FlowNodeState.Default]: string; [FlowNodeState.Selected]: string; }; createFlowElement(flowElt?: EndEvent): EndEvent; }