import { Model } from '@5minds/processcube_engine_sdk'; import { EventMiddlewareHandler, FlowNodeInstanceDatabaseAdapter } from '../../../Tools/index'; import { EscalationEventService } from '../../EscalationEventService'; import { ProcessInstance } from '../../ProcessInstance'; import { FlowNodeHandlerFactory } from '../FlowNodeHandlerFactory'; import { EndEventHandler } from './EndEventHandler'; export declare class EndEscalationEventHandler extends EndEventHandler { protected escalationEventService: EscalationEventService; constructor(eventMiddlewareHandler: EventMiddlewareHandler, flowNodeHandlerFactory: FlowNodeHandlerFactory, flowNodeInstanceDatabaseAdapter: FlowNodeInstanceDatabaseAdapter, escalationEndEventModel: Model.Events.EscalationEndEvent, processInstance: ProcessInstance, escalationEventService: EscalationEventService); protected get escalationEndEvent(): Model.Events.EscalationEndEvent; protected persistOnExit(): Promise; protected startExecution(): Promise>; protected executeHandler(): Promise>; }