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