import { BooleanValue, JSStringValue, NullValue, ObjectValue, Value } from '../value.mts'; import { type ExoticObject, Realm } from '#self'; export interface StringObject extends ExoticObject { readonly StringData: JSStringValue; Prototype: ObjectValue | NullValue; Extensible: BooleanValue; } export declare function isStringObject(o: Value): o is StringObject; export declare function bootstrapString(realmRec: Realm): void; //# sourceMappingURL=String.d.mts.map