import { BooleanValue, ObjectValue, Value } from '../value.mts'; import type { ValueEvaluator } from '../evaluator.mts'; import { type ExoticObject } from './all.mts'; export type ImmutablePrototypeObject = ExoticObject; /** https://tc39.es/ecma262/#sec-set-immutable-prototype */ export declare function SetImmutablePrototype(O: ObjectValue, V: Value): ValueEvaluator; //# sourceMappingURL=immutable-prototype-objects.d.mts.map