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