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