/// import { EventEmitter } from 'events'; export declare class EventNode extends EventEmitter { parent: EventNode; childs: EventNode[]; model: string; constructor(model: string); trigger(event: string | symbol, ...args: any[]): boolean; }