import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PaymentMethodCardMetadata = { brand: string; last4: string; expMonth: number; expYear: number; wallet?: string | null | undefined; }; /** @internal */ export declare const PaymentMethodCardMetadata$inboundSchema: z.ZodMiniType; export declare function paymentMethodCardMetadataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethodcardmetadata.d.ts.map