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