import { Behaviour } from '.'; import { Item } from "../../engine/Item"; import { NODE_ACTION } from "../../interfaces"; declare class EscalationEventBehaviour extends Behaviour { constructor(node: any, def: any); init(): void; start(item: Item): Promise; get escalationId(): any; describe(): string[][]; } export { EscalationEventBehaviour };