import * as z from "zod"; /** * Forbidden */ export type ForbiddenData = { description?: any; }; /** * Forbidden */ export declare class Forbidden extends Error { description?: any; /** The original data that was passed to this error instance. */ data$: ForbiddenData; constructor(err: ForbiddenData); } /** @internal */ export declare const Forbidden$inboundSchema: z.ZodType; /** @internal */ export type Forbidden$Outbound = { description?: any; }; /** @internal */ export declare const Forbidden$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 Forbidden$ { /** @deprecated use `Forbidden$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Forbidden$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Forbidden$Outbound` instead. */ type Outbound = Forbidden$Outbound; } //# sourceMappingURL=forbidden.d.ts.map