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