import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BirthDateUpdate, BirthDateUpdate$Outbound } from "./birthdateupdate.js"; /** * Fields for identifying an authorized individual. */ export type CreateAuthorizedUserUpdate = { firstName?: string | undefined; lastName?: string | undefined; birthDate?: BirthDateUpdate | undefined; }; /** @internal */ export declare const CreateAuthorizedUserUpdate$inboundSchema: z.ZodType; /** @internal */ export type CreateAuthorizedUserUpdate$Outbound = { firstName?: string | undefined; lastName?: string | undefined; birthDate?: BirthDateUpdate$Outbound | undefined; }; /** @internal */ export declare const CreateAuthorizedUserUpdate$outboundSchema: z.ZodType; export declare function createAuthorizedUserUpdateToJSON(createAuthorizedUserUpdate: CreateAuthorizedUserUpdate): string; export declare function createAuthorizedUserUpdateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createauthorizeduserupdate.d.ts.map