import { ObjectValue, Value } from '../value.mts'; import { type ValueEvaluator } from '../completion.mts'; import { Realm, type FunctionObject, type OrdinaryObject } from '#self'; export declare function AddEntriesFromIterable(target: ObjectValue, iterable: Value, adder: FunctionObject): ValueEvaluator; export interface MapObject extends OrdinaryObject { readonly MapData: { Key: Value | undefined; Value: Value | undefined; }[]; } export declare function isMapObject(value: Value): value is MapObject; export declare function bootstrapMap(realmRec: Realm): void; //# sourceMappingURL=Map.d.mts.map