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