import { NodeCell, FarrisPropConfigWithData } from "@edp-pmf/grapheditor"; import { MxGraphNS } from "@edp-pmf/mxgraph-ts"; import { FlowNodeState } from "@edp-pmf/bpmn-model"; import { MessageActivity } from "@gsp-wf/wf-process-model"; /** * 消息活动节点 */ export declare class MessageActivityCell extends NodeCell { clrTypeId: string; name: string; nameLanguage: { [lang: string]: string; }; static CLR_TYPE_ID: string; flowElement: MessageActivity; imgUrls: { [FlowNodeState.Default]: string; [FlowNodeState.Selected]: string; }; constructor(value?: any, geometry?: MxGraphNS.mxGeometry, style?: string); createFlowElement(flowElt?: MessageActivity): MessageActivity; getFarrisPropConfig(): FarrisPropConfigWithData; updateProps(obj: any): void; updateMessageNotices(messageActivity: MessageActivity, obj: any): void; updateVariableSettings(messageActivity: MessageActivity, obj: any): void; }