import * as z from "zod/v3"; import { OutpostError } from "./outposterror.js"; /** * Status codes relating to the client being rate limited by the server */ export type RateLimitedErrorData = { message?: string | undefined; additionalProperties: { [k: string]: any; }; }; /** * Status codes relating to the client being rate limited by the server */ export declare class RateLimitedError extends OutpostError { additionalProperties: { [k: string]: any; }; /** The original data that was passed to this error instance. */ data$: RateLimitedErrorData; constructor(err: RateLimitedErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const RateLimitedError$inboundSchema: z.ZodType; /** @internal */ export type RateLimitedError$Outbound = { message?: string | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const RateLimitedError$outboundSchema: z.ZodType; //# sourceMappingURL=ratelimitederror.d.ts.map