import * as z from "zod"; import * as models from "../index.js"; import { SupertoneError } from "./supertoneerror.js"; export type NotFoundErrorResponseData = { /** * Response status */ status: string; /** * Not found error details */ message: models.NotFoundErrorResponseMessage; }; export declare class NotFoundErrorResponse extends SupertoneError { /** * Response status */ status: string; /** The original data that was passed to this error instance. */ data$: NotFoundErrorResponseData; constructor(err: NotFoundErrorResponseData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const NotFoundErrorResponse$inboundSchema: z.ZodType; /** @internal */ export type NotFoundErrorResponse$Outbound = { status: string; message: models.NotFoundErrorResponseMessage$Outbound; }; /** @internal */ export declare const NotFoundErrorResponse$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 NotFoundErrorResponse$ { /** @deprecated use `NotFoundErrorResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NotFoundErrorResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NotFoundErrorResponse$Outbound` instead. */ type Outbound = NotFoundErrorResponse$Outbound; } //# sourceMappingURL=notfounderrorresponse.d.ts.map