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