import { CustomEvent } from '../../../Events/CustomEvent.js'; import { Fiber } from '../../../Execution/Fiber.js'; import { Graph } from '../../../Graphs/Graph.js'; import { FlowNode } from '../../../Nodes/FlowNode.js'; import { NodeDescription } from '../../../Nodes/Registry/NodeDescription.js'; export declare class TriggerCustomEvent extends FlowNode { readonly customEvent: CustomEvent; static GetDescription(graph: Graph, customEventId: string): NodeDescription; constructor(description: NodeDescription, graph: Graph, customEvent: CustomEvent); triggered(fiber: Fiber, triggeringSocketName: string): void; } //# sourceMappingURL=TriggerCustomEvent.d.ts.map