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