/**
 * @param {State} state
 * @returns {{ node: BinaryOperation | TernaryOperation; end: number }}
 */
export default function infix(state: State): {
    node: BinaryOperation | TernaryOperation;
    end: number;
};
export type State = import("../parse.js").State;
export type Node = import("../index.js").Node;
export type Term = import("../index.js").Term;
export type BinaryOperation = import("../index.js").BinaryOperation;
export type TernaryOperation = import("../index.js").TernaryOperation;
//# sourceMappingURL=infix.d.ts.map