import type { ValueEvaluator } from '../evaluator.mts'; import type { ParseNode } from '../parser/ParseNode.mts'; /** https://tc39.es/ecma262/#sec-left-shift-operator-runtime-semantics-evaluation */ /** https://tc39.es/ecma262/#sec-signed-right-shift-operator-runtime-semantics-evaluation */ /** https://tc39.es/ecma262/#sec-unsigned-right-shift-operator-runtime-semantics-evaluation */ export declare function Evaluate_ShiftExpression({ ShiftExpression, operator, AdditiveExpression }: ParseNode.ShiftExpression): ValueEvaluator; //# sourceMappingURL=ShiftExpression.d.mts.map