import { type PlainEvaluator } from '../evaluator.mts'; import type { ParseNode } from '../parser/ParseNode.mts'; export declare function Evaluate_LexicalBinding(LexicalBinding: ParseNode.LexicalBinding): Generator, import("#self").EvaluatorNextType>; /** https://tc39.es/ecma262/#sec-let-and-const-declarations-runtime-semantics-evaluation */ export declare function Evaluate_BindingList(BindingList: ParseNode.BindingList): Generator, import("#self").EvaluatorNextType>; /** https://tc39.es/ecma262/#sec-let-and-const-declarations-runtime-semantics-evaluation */ export declare function Evaluate_LexicalDeclaration({ BindingList }: ParseNode.LexicalDeclaration): PlainEvaluator; //# sourceMappingURL=LexicalDeclaration.d.mts.map