import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RelatedPerson = { firstName?: string | undefined; lastName?: string | undefined; }; /** @internal */ export declare const RelatedPerson$inboundSchema: z.ZodType; /** @internal */ export type RelatedPerson$Outbound = { firstName?: string | undefined; lastName?: string | undefined; }; /** @internal */ export declare const RelatedPerson$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace RelatedPerson$ { /** @deprecated use `RelatedPerson$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RelatedPerson$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RelatedPerson$Outbound` instead. */ type Outbound = RelatedPerson$Outbound; } export declare function relatedPersonToJSON(relatedPerson: RelatedPerson): string; export declare function relatedPersonFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=relatedperson.d.ts.map