import { Engine } from '../Execution/Engine.js'; import { Graph } from '../Graphs/Graph.js'; import { Socket } from '../Sockets/Socket.js'; import { Node } from './Node.js'; import { NodeDescription } from './Registry/NodeDescription.js'; export declare class EventNode extends Node { constructor(description: NodeDescription, graph: Graph, inputSockets: Socket[], outputSockets: Socket[]); init(engine: Engine): void; dispose(engine: Engine): void; } //# sourceMappingURL=EventNode.d.ts.map