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