export type OwnDataProperty = { readonly found: true; readonly value: unknown; } | { readonly found: false; }; export declare function hasControlCharacter(value: string): boolean; /** * Read data at a trust boundary without invoking getters or inherited state. */ export declare function readOwnDataProperty(value: unknown, key: PropertyKey): OwnDataProperty; //# sourceMappingURL=data-properties.d.ts.map