import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The bank account type. */ export declare const BankAccountType: { readonly Checking: "checking"; readonly Savings: "savings"; readonly GeneralLedger: "general-ledger"; readonly Loan: "loan"; }; /** * The bank account type. */ export type BankAccountType = ClosedEnum; /** @internal */ export declare const BankAccountType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const BankAccountType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=bankaccounttype.d.ts.map