import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of bank account e.g. checking, savings, loan, creditCard, prepaidCard. */ export declare const AccountType: { readonly Checking: "checking"; readonly Savings: "savings"; readonly Loan: "loan"; readonly CreditCard: "creditCard"; readonly PrepaidCard: "prepaidCard"; }; /** * The type of bank account e.g. checking, savings, loan, creditCard, prepaidCard. */ export type AccountType = ClosedEnum; /** @internal */ export declare const AccountType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=accounttype.d.ts.map