import * as z from "zod"; /** * Internal Server Error */ export type InternalServerErrorData = { description?: any; }; /** * Internal Server Error */ export declare class InternalServerError extends Error { description?: any; /** The original data that was passed to this error instance. */ data$: InternalServerErrorData; constructor(err: InternalServerErrorData); } /** @internal */ export declare const InternalServerError$inboundSchema: z.ZodType; /** @internal */ export type InternalServerError$Outbound = { description?: any; }; /** @internal */ export declare const InternalServerError$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 InternalServerError$ { /** @deprecated use `InternalServerError$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `InternalServerError$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `InternalServerError$Outbound` instead. */ type Outbound = InternalServerError$Outbound; } //# sourceMappingURL=internalservererror.d.ts.map