import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BirthDate = { day: number; month: number; year: number; }; /** @internal */ export declare const BirthDate$inboundSchema: z.ZodType; /** @internal */ export type BirthDate$Outbound = { day: number; month: number; year: number; }; /** @internal */ export declare const BirthDate$outboundSchema: z.ZodType; export declare function birthDateToJSON(birthDate: BirthDate): string; export declare function birthDateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=birthdate.d.ts.map