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