import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Person, Person$Outbound } from "./person.js"; export type CustomFieldValuePerson = { person?: Person | undefined; }; /** @internal */ export declare const CustomFieldValuePerson$inboundSchema: z.ZodType; /** @internal */ export type CustomFieldValuePerson$Outbound = { person?: Person$Outbound | undefined; }; /** @internal */ export declare const CustomFieldValuePerson$outboundSchema: z.ZodType; export declare function customFieldValuePersonToJSON(customFieldValuePerson: CustomFieldValuePerson): string; export declare function customFieldValuePersonFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customfieldvalueperson.d.ts.map