/** * Financial Advisor's configuration data types. */ export declare enum FADataType { NA = 0, /** Offer traders a way to create a group of accounts and apply a single allocation method to all accounts in the group. */ GROUPS = 1, /** @deprecated Let you allocate shares on an account-by-account basis using a predefined calculation value. */ PROFILES = 2, /** Let you easily identify the accounts by meaningful names rather than account numbers. */ ALIASES = 3 } export default FADataType;