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