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