import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PersonObject = { /** * The display name. */ name: string; /** * An opaque identifier that can be used to request metadata for a Person. */ obfuscatedId: string; }; /** @internal */ export declare const PersonObject$inboundSchema: z.ZodType; /** @internal */ export type PersonObject$Outbound = { name: string; obfuscatedId: string; }; /** @internal */ export declare const PersonObject$outboundSchema: z.ZodType; export declare function personObjectToJSON(personObject: PersonObject): string; export declare function personObjectFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=personobject.d.ts.map