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