import { type PlainEvaluator, type StatementEvaluator } from '../evaluator.mts'; import { JSStringSet } from '../utils/container.mts'; import type { ParseNode } from '../parser/ParseNode.mts'; export declare function LabelledEvaluation(node: ParseNode.LabelledStatement | ParseNode.BreakableStatement, labelSet: JSStringSet): StatementEvaluator; /** https://tc39.es/ecma262/#sec-for-in-and-for-of-statements-runtime-semantics-evaluation */ export declare function Evaluate_ForBinding({ BindingIdentifier, strict }: ParseNode.ForBinding): PlainEvaluator; //# sourceMappingURL=LabelledEvaluation.d.mts.map