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