import { DataModels, IFlowNodeInstanceExtensionAdapter, Identity } from '@5minds/processcube_engine_sdk'; import { FlowNodeInstanceService } from '../../../Api/Services'; import { IdentityService } from '../../Iam'; export declare class FlowNodeInstanceExtensionAdapter implements IFlowNodeInstanceExtensionAdapter { private readonly flowNodeInstanceService; private readonly identityService; private readonly logger; constructor(flowNodeInstanceService: FlowNodeInstanceService, identityService: IdentityService); query(query: DataModels.FlowNodeInstances.GenericFlowNodeInstanceQuery, options?: { identity?: Identity; offset?: number; limit?: number; sortSettings?: DataModels.FlowNodeInstances.FlowNodeInstanceSortSettings; }): Promise; finishUntypedTask(taskInstanceId: string, identity?: Identity): Promise; finishManualTask(manualTaskInstanceId: string, identity?: Identity): Promise; finishUserTask(userTaskInstanceId: string, userTaskResult: DataModels.FlowNodeInstances.UserTaskResult, identity?: Identity): Promise; triggerMessageEvent(messageName: string, options?: { customCorrelationId?: string; processInstanceId?: string; payload?: TPayload; identity?: Identity; messageChannel?: string; }): Promise; triggerSignalEvent(signalName: string, options?: { customCorrelationId?: string; processInstanceId?: string; payload?: TPayload; identity?: Identity; signalChannel?: string; }): Promise; }