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