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