import { Value } from '../value.mts'; import type { ParseNode } from '../parser/ParseNode.mts'; import type { EnvironmentRecord, PropertyKeyValue, UndefinedValue } from '#self'; /** https://tc39.es/ecma262/#sec-runtime-semantics-keyedbindinginitialization */ export declare function KeyedBindingInitialization(node: ParseNode.BindingElement | ParseNode.SingleNameBinding, value: Value, environment: EnvironmentRecord | UndefinedValue, propertyName: PropertyKeyValue): Generator, import("#self").EvaluatorNextType>; //# sourceMappingURL=KeyedBindingInitialization.d.mts.map