import { Descriptor, ObjectValue, JSStringValue, UndefinedValue, type PropertyKeyValue } from '../value.mts'; import type { StringObject } from '../intrinsics/String.mts'; import type { Mutable } from '../utils/language.mts'; /** https://tc39.es/ecma262/#sec-stringcreate */ export declare function StringCreate(value: JSStringValue, prototype: ObjectValue): Mutable; /** https://tc39.es/ecma262/#sec-stringgetownproperty */ export declare function StringGetOwnProperty(S: ObjectValue, P: PropertyKeyValue): Descriptor | UndefinedValue; //# sourceMappingURL=string-objects.d.mts.map