import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { RFCDate } from "../../types/rfcdate.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Gender } from "./gender.js"; export type PersonInput = { /** * The first name of the person. */ firstName?: string | null | undefined; /** * The last name of the person. */ lastName?: string | null | undefined; /** * Middle name of the person. */ middleName?: string | null | undefined; /** * The gender represents the gender identity of a person. */ gender?: Gender | null | undefined; /** * Initials of the person */ initials?: string | null | undefined; /** * Date of birth */ birthday?: RFCDate | null | undefined; /** * Date of death */ deceasedOn?: RFCDate | null | undefined; }; /** @internal */ export declare const PersonInput$inboundSchema: z.ZodType; /** @internal */ export type PersonInput$Outbound = { first_name?: string | null | undefined; last_name?: string | null | undefined; middle_name?: string | null | undefined; gender?: string | null | undefined; initials?: string | null | undefined; birthday?: string | null | undefined; deceased_on?: string | null | undefined; }; /** @internal */ export declare const PersonInput$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 PersonInput$ { /** @deprecated use `PersonInput$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `PersonInput$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `PersonInput$Outbound` instead. */ type Outbound = PersonInput$Outbound; } export declare function personInputToJSON(personInput: PersonInput): string; export declare function personInputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=personinput.d.ts.map