import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CardType } from "./cardtype.js"; export type PaymentMethodDetailsCard = { bin?: string | null | undefined; cardType?: CardType | null | undefined; cardIssuerName?: string | null | undefined; }; /** @internal */ export declare const PaymentMethodDetailsCard$inboundSchema: z.ZodType; export declare function paymentMethodDetailsCardFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethoddetailscard.d.ts.map