import * as z from "zod"; import { ProveapiError } from "./proveapierror.js"; export type Error404Data = { /** * An error code that describes the problem category of the request. */ code?: number | undefined; /** * The error message describing the problem with the request. */ message: string; }; export declare class Error404 extends ProveapiError { /** * An error code that describes the problem category of the request. */ code?: number | undefined; /** The original data that was passed to this error instance. */ data$: Error404Data; constructor(err: Error404Data, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const Error404$inboundSchema: z.ZodType; /** @internal */ export type Error404$Outbound = { code?: number | undefined; message: string; }; /** @internal */ export declare const Error404$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 Error404$ { /** @deprecated use `Error404$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Error404$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Error404$Outbound` instead. */ type Outbound = Error404$Outbound; } //# sourceMappingURL=error404.d.ts.map