/** * * `SAVINGS` - SAVINGS * * `CHECKING` - CHECKING */ export declare const AccountTypeEnum: { readonly Savings: "SAVINGS"; readonly Checking: "CHECKING"; }; export type AccountTypeEnum = (typeof AccountTypeEnum)[keyof typeof AccountTypeEnum];