import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomerPaymentMethodCard } from "./customerpaymentmethodcard.js"; import { CustomerPaymentMethodGeneric } from "./customerpaymentmethodgeneric.js"; export type PaymentMethod = CustomerPaymentMethodCard | CustomerPaymentMethodGeneric; /** @internal */ export declare const PaymentMethod$inboundSchema: z.ZodMiniType; export declare function paymentMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paymentmethod.d.ts.map