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