import * as z from "zod/v3"; import { OutpostError } from "./outposterror.js"; /** * Status codes relating to the resource/entity they are requesting not being found or endpoints/routes not existing */ export type NotFoundErrorData = { message?: string | undefined; additionalProperties: { [k: string]: any; }; }; /** * Status codes relating to the resource/entity they are requesting not being found or endpoints/routes not existing */ export declare class NotFoundError extends OutpostError { additionalProperties: { [k: string]: any; }; /** The original data that was passed to this error instance. */ data$: NotFoundErrorData; constructor(err: NotFoundErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const NotFoundError$inboundSchema: z.ZodType; /** @internal */ export type NotFoundError$Outbound = { message?: string | undefined; [additionalProperties: string]: unknown; }; /** @internal */ export declare const NotFoundError$outboundSchema: z.ZodType; //# sourceMappingURL=notfounderror.d.ts.map