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