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