import { ObjectValue, SymbolValue } from '../value.mts'; import { Realm, type OrdinaryObject } from '#self'; export interface WeakRefObject extends OrdinaryObject { WeakRefTarget: ObjectValue | SymbolValue | undefined; } export declare function isWeakRef(object: object): object is WeakRefObject; export declare function bootstrapWeakRef(realmRec: Realm): void; //# sourceMappingURL=WeakRef.d.mts.map