import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Address, Address$Outbound } from "./address.js"; import { BirthDate, BirthDate$Outbound } from "./birthdate.js"; import { GovernmentID, GovernmentID$Outbound } from "./governmentid.js"; import { IndividualName, IndividualName$Outbound } from "./individualname.js"; import { PhoneNumber, PhoneNumber$Outbound } from "./phonenumber.js"; export type CreateIndividualProfile = { name: IndividualName; phone?: PhoneNumber | undefined; email?: string | undefined; address?: Address | undefined; birthDate?: BirthDate | undefined; governmentID?: GovernmentID | undefined; }; /** @internal */ export declare const CreateIndividualProfile$inboundSchema: z.ZodType; /** @internal */ export type CreateIndividualProfile$Outbound = { name: IndividualName$Outbound; phone?: PhoneNumber$Outbound | undefined; email?: string | undefined; address?: Address$Outbound | undefined; birthDate?: BirthDate$Outbound | undefined; governmentID?: GovernmentID$Outbound | undefined; }; /** @internal */ export declare const CreateIndividualProfile$outboundSchema: z.ZodType; export declare function createIndividualProfileToJSON(createIndividualProfile: CreateIndividualProfile): string; export declare function createIndividualProfileFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createindividualprofile.d.ts.map