import * as z from "zod/v3"; export type BankAccountHolder = { /** * The account holder's first name */ firstName?: string | null | undefined; /** * The account holder's last name */ lastName?: string | null | undefined; /** * The account holder's company name */ companyName?: string | null | undefined; }; /** @internal */ export type BankAccountHolder$Outbound = { first_name?: string | null | undefined; last_name?: string | null | undefined; company_name?: string | null | undefined; }; /** @internal */ export declare const BankAccountHolder$outboundSchema: z.ZodType; export declare function bankAccountHolderToJSON(bankAccountHolder: BankAccountHolder): string; //# sourceMappingURL=bankaccountholder.d.ts.map