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