import * as z from "zod"; import * as models from "../index.js"; import { SupertoneError } from "./supertoneerror.js"; export type TooManyRequestsErrorResponseData = { /** * Response status */ status: string; /** * Too many requests error details */ message: models.TooManyRequestsErrorResponseMessage; }; export declare class TooManyRequestsErrorResponse extends SupertoneError { /** * Response status */ status: string; /** The original data that was passed to this error instance. */ data$: TooManyRequestsErrorResponseData; constructor(err: TooManyRequestsErrorResponseData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const TooManyRequestsErrorResponse$inboundSchema: z.ZodType; /** @internal */ export type TooManyRequestsErrorResponse$Outbound = { status: string; message: models.TooManyRequestsErrorResponseMessage$Outbound; }; /** @internal */ export declare const TooManyRequestsErrorResponse$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 TooManyRequestsErrorResponse$ { /** @deprecated use `TooManyRequestsErrorResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TooManyRequestsErrorResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TooManyRequestsErrorResponse$Outbound` instead. */ type Outbound = TooManyRequestsErrorResponse$Outbound; } //# sourceMappingURL=toomanyrequestserrorresponse.d.ts.map