import * as z from "zod/v3"; import { OutpostError } from "./outposterror.js"; /** * A collection of status codes that generally mean the server failed in an unexpected way */ export type InternalServerErrorData = { message?: string | undefined; additionalProperties: { [k: string]: any; }; }; /** * A collection of status codes that generally mean the server failed in an unexpected way */ export declare class InternalServerError extends OutpostError { additionalProperties: { [k: string]: any; }; /** The original data that was passed to this error instance. */ data$: InternalServerErrorData; constructor(err: InternalServerErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const InternalServerError$inboundSchema: z.ZodType; /** @internal */ export type InternalServerError$Outbound = { message?: string | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const InternalServerError$outboundSchema: z.ZodType; //# sourceMappingURL=internalservererror.d.ts.map