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