import { FlowNodeInstance, Model } from '@5minds/processcube_engine_sdk'; import { ActivityExecutionStrategy } from './ActivityExecutionStrategy'; export declare class ParallelActivityExecutionStrategy extends ActivityExecutionStrategy { get flowNodeInstanceId(): string; execute(startToken: Record | Array): Promise | Array>; resume(flowNodeInstancesToResume: Array, startToken: Record | Array): Promise | Array>; private getDeltaOfAlreadyStartedAndToBeStartedFlowNodeInstances; }