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