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'; import { Variable } from '../../../Variables/Variable.js'; export declare class VariableSet extends FlowNode { readonly variable: Variable; static GetDescription(graph: Graph, variableId: string): NodeDescription; constructor(description: NodeDescription, graph: Graph, variable: Variable); triggered(fiber: Fiber, triggeredSocketName: string): void; } //# sourceMappingURL=VariableSet.d.ts.map