import { type ValueEvaluator } from '../evaluator.mts'; import type { ParseNode } from '../parser/ParseNode.mts'; import { type BinaryOperator } from './all.mts'; /** https://tc39.es/ecma262/#sec-evaluatestringornumericbinaryexpression */ export declare function EvaluateStringOrNumericBinaryExpression(leftOperand: ParseNode.Expression, opText: BinaryOperator, rightOperand: ParseNode.Expression): ValueEvaluator; //# sourceMappingURL=EvaluateStringOrNumericBinaryExpression.d.mts.map