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