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