import * as z from "zod"; /** * Unauthorized */ export type UnauthorizedData = { description?: string; }; /** * Unauthorized */ export declare class Unauthorized extends Error { description?: string; /** The original data that was passed to this error instance. */ data$: UnauthorizedData; constructor(err: UnauthorizedData); } /** @internal */ export declare const Unauthorized$inboundSchema: z.ZodType; /** @internal */ export type Unauthorized$Outbound = { description?: string; }; /** @internal */ export declare const Unauthorized$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Unauthorized$ { /** @deprecated use `Unauthorized$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Unauthorized$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Unauthorized$Outbound` instead. */ type Outbound = Unauthorized$Outbound; } //# sourceMappingURL=unauthorized.d.ts.map