import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BirthDateError = { day?: string | undefined; month?: string | undefined; year?: string | undefined; }; /** @internal */ export declare const BirthDateError$inboundSchema: z.ZodType; /** @internal */ export type BirthDateError$Outbound = { day?: string | undefined; month?: string | undefined; year?: string | undefined; }; /** @internal */ export declare const BirthDateError$outboundSchema: z.ZodType; export declare function birthDateErrorToJSON(birthDateError: BirthDateError): string; export declare function birthDateErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=birthdateerror.d.ts.map