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