import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardBrand } from "./cardbrand.js"; export type CardPaymentMethod = { last4: string; brand: CardBrand; }; /** @internal */ export declare const CardPaymentMethod$inboundSchema: z.ZodType; export declare function cardPaymentMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cardpaymentmethod.d.ts.map