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 ImmediateNode extends Node { readonly exec: () => void; constructor(description: NodeDescription, graph: Graph, inputSockets: Socket[], outputSockets: Socket[], exec: () => void); } //# sourceMappingURL=ImmediateNode.d.ts.map