import { JSStringValue, Value, NumberValue, BigIntValue } from '../value.mts'; export type BinaryOperator = '+' | '-' | '*' | '/' | '%' | '**' | '<<' | '>>' | '>>>' | '&' | '^' | '|'; /** https://tc39.es/ecma262/#sec-applystringornumericbinaryoperator */ export declare function ApplyStringOrNumericBinaryOperator(lval: Value, opText: BinaryOperator, rval: Value): Generator; //# sourceMappingURL=ApplyStringOrNumericBinaryOperator.d.mts.map