import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BankAccountIntegration, BankAccountIntegration$Outbound } from "./bankaccountintegration.js"; /** * Describes the bank account to link to the Moov account. */ export type BankAccountPayload = { account: BankAccountIntegration; }; /** @internal */ export declare const BankAccountPayload$inboundSchema: z.ZodType; /** @internal */ export type BankAccountPayload$Outbound = { account: BankAccountIntegration$Outbound; }; /** @internal */ export declare const BankAccountPayload$outboundSchema: z.ZodType; export declare function bankAccountPayloadToJSON(bankAccountPayload: BankAccountPayload): string; export declare function bankAccountPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=bankaccountpayload.d.ts.map