import { KindNode, LocationRange, TypeOperator } from "../ast/types.js"; import { AnalysisContext } from "./context.js"; import { Node } from "./Node.js"; import { AnyTypedUnitTypeNode } from "./types.js"; export declare class NodeInfixUnitType extends Node<"InfixUnitType"> { op: TypeOperator; args: [AnyTypedUnitTypeNode, AnyTypedUnitTypeNode]; constructor(location: LocationRange, op: TypeOperator, args: [AnyTypedUnitTypeNode, AnyTypedUnitTypeNode]); children(): [AnyTypedUnitTypeNode, AnyTypedUnitTypeNode]; static fromAst(node: KindNode<"InfixUnitType">, context: AnalysisContext): NodeInfixUnitType; } //# sourceMappingURL=NodeInfixUnitType.d.ts.map