import * as z from "zod/v3"; import { MoovError } from "./mooverror.js"; export type GenericErrorData = { error: string; }; export declare class GenericError extends MoovError { error: string; /** The original data that was passed to this error instance. */ data$: GenericErrorData; constructor(err: GenericErrorData, httpMeta: { response: Response; request: Request; body: string; }); } /** @internal */ export declare const GenericError$inboundSchema: z.ZodType; /** @internal */ export type GenericError$Outbound = { error: string; }; /** @internal */ export declare const GenericError$outboundSchema: z.ZodType; //# sourceMappingURL=genericerror.d.ts.map