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