import { BigIntValue, Value } from '../value.mts'; import { type OrdinaryObject, Realm } from '#self'; export interface BigIntObject extends OrdinaryObject { readonly BigIntData: BigIntValue; } export declare function isBigIntObject(o: Value): o is BigIntObject; export declare function bootstrapBigInt(realmRec: Realm): void; //# sourceMappingURL=BigInt.d.mts.map