import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BirthDateError, BirthDateError$Outbound } from "./birthdateerror.js"; export type CreateAuthorizedUserError = { firstName?: string | undefined; lastName?: string | undefined; birthDate?: BirthDateError | undefined; }; /** @internal */ export declare const CreateAuthorizedUserError$inboundSchema: z.ZodType; /** @internal */ export type CreateAuthorizedUserError$Outbound = { firstName?: string | undefined; lastName?: string | undefined; birthDate?: BirthDateError$Outbound | undefined; }; /** @internal */ export declare const CreateAuthorizedUserError$outboundSchema: z.ZodType; export declare function createAuthorizedUserErrorToJSON(createAuthorizedUserError: CreateAuthorizedUserError): string; export declare function createAuthorizedUserErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createauthorizedusererror.d.ts.map