import { DataModels, IEventExtensionAdapter, Identity, Messages, Subscription } from '@5minds/processcube_engine_sdk'; import { FlowNodeInstanceService, NotificationService } from '../../../Api/Services'; import { IdentityService } from '../../Iam'; type EventList = DataModels.FlowNodeInstances.EventList; export declare class EventExtensionAdapter implements IEventExtensionAdapter { private readonly flowNodeInstanceService; private readonly logger; private readonly notificationService; private readonly identityService; constructor(flowNodeInstanceService: FlowNodeInstanceService, notificationService: NotificationService, identityService: IdentityService); query(query: DataModels.FlowNodeInstances.EventQuery, options?: { identity?: Identity; offset?: number; limit?: number; sortSettings?: DataModels.FlowNodeInstances.FlowNodeInstanceSortSettings; }): 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; onBoundaryEventTriggered(callback: Messages.CallbackTypes.OnBoundaryEventTriggeredCallback, options?: { subscribeOnce?: boolean; identity?: Identity; }): Promise; onBoundaryEventFinished(callback: Messages.CallbackTypes.OnBoundaryEventFinishedCallback, options?: { subscribeOnce?: boolean; identity?: Identity; }): Promise; onIntermediateThrowEventTriggered(callback: Messages.CallbackTypes.OnIntermediateThrowEventTriggeredCallback, options?: { subscribeOnce?: boolean; identity?: Identity; }): Promise; onIntermediateCatchEventReached(callback: Messages.CallbackTypes.OnIntermediateCatchEventReachedCallback, options?: { subscribeOnce?: boolean; identity?: Identity; }): Promise; onIntermediateCatchEventFinished(callback: Messages.CallbackTypes.OnIntermediateCatchEventFinishedCallback, options?: { subscribeOnce?: boolean; identity?: Identity; }): Promise; onMessageTriggered(callback: Messages.CallbackTypes.OnMessageTriggeredCallback, options?: { subscribeOnce?: boolean; identity?: DataModels.Iam.Identity; }): Promise; onSignalTriggered(callback: Messages.CallbackTypes.OnSignalTriggeredCallback, options?: { subscribeOnce?: boolean; identity?: DataModels.Iam.Identity; }): Promise; onStartEventFinished(callback: Messages.CallbackTypes.OnStartEventFinishedCallback, options?: { subscribeOnce?: boolean; identity?: DataModels.Iam.Identity; }): Promise; onEndEventFinished(callback: Messages.CallbackTypes.OnEndEventFinishedCallback, options?: { subscribeOnce?: boolean; identity?: DataModels.Iam.Identity; }): Promise; removeSubscription(subscription: Subscription): void; } export {};