/**
 * Indicates the broad product or asset classification. May be used to provide grouping for the product taxonomy (Product(460), SecurityType(167), etc.) and/or the risk taxonomy (AssetClass(1938), AssetSubClass(1939), AssetType(1940), etc.).
 * - Tag: 2210
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AssetGroup: Readonly<{
    /** Financials
        A categorization which usually includes rates, foreign exchange, credit, bonds and equity products or assets. */
    readonly Financials: 1;
    /** Commodities
        A categorization which usually includes hard commodities such as agricultural, metals, freight, energy products or assets. */
    readonly Commodities: 2;
    /** Alternative investments
        A categorization which usually includes weather, housing, and commodity indices products or assets. */
    readonly AlternativeInvestments: 3;
}>;
export type AssetGroup = (typeof AssetGroup)[keyof typeof AssetGroup];
