import type { BinaryExpression } from "../parser/types.js"; import type { Plugin } from "../plugin.js"; import type { RunOptions } from "./evaluate.js"; export declare function evaluateBinary(node: BinaryExpression, context: Record, depth: number, plugins?: Plugin[], options?: RunOptions): unknown;