import { type PlainEvaluator } from '../evaluator.mts'; import type { ParseNode } from '../parser/ParseNode.mts'; /** https://tc39.es/ecma262/#sec-variable-statement-runtime-semantics-evaluation */ export declare function Evaluate_VariableDeclarationList(VariableDeclarationList: ParseNode.VariableDeclarationList): Generator, import("#self").EvaluatorNextType>; /** https://tc39.es/ecma262/#sec-variable-statement-runtime-semantics-evaluation */ export declare function Evaluate_VariableStatement({ VariableDeclarationList }: ParseNode.VariableStatement): PlainEvaluator; //# sourceMappingURL=VariableStatement.d.mts.map