import * as z from "zod/v4-mini"; import { PolarError } from "./polarerror.js"; export type PaymentMethodSetupFailedData = { error: "PaymentMethodSetupFailed"; detail: string; }; export declare class PaymentMethodSetupFailed extends PolarError { error: "PaymentMethodSetupFailed"; detail: string; /** The original data that was passed to this error instance. */ data$: PaymentMethodSetupFailedData; constructor(err: PaymentMethodSetupFailedData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const PaymentMethodSetupFailed$inboundSchema: z.ZodMiniType; //# sourceMappingURL=paymentmethodsetupfailed.d.ts.map