import { Behaviour } from '.'; import type { Item } from "../../engine/Item"; import { NODE_ACTION } from "../../interfaces"; declare class ErrorEventBehaviour extends Behaviour { init(): void; run(item: Item): Promise; start(item: Item): Promise; get errorId(): any; describe(): string[][]; } export { ErrorEventBehaviour };