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