import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of entity represented by this account. */ export declare const AccountType: { readonly Individual: "individual"; readonly Business: "business"; readonly Guest: "guest"; }; /** * The type of entity represented by this account. */ export type AccountType = ClosedEnum; /** @internal */ export declare const AccountType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AccountType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=accounttype.d.ts.map