import { ValueNode } from '../nodes/graph/value'; import { GraphNode, NodeDependencyUntilCondition, NodeType } from '../types/graph'; export declare function isPositiveIntegerValueNode(node: GraphNode): node is ValueNode; export declare function untilPositiveIntegerValueNode(nodeType: NodeType, paramName: string): NodeDependencyUntilCondition;