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