/**
 * The broad asset category for assessing risk exposure.
 * - Tag: 1938
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AssetClass: Readonly<{
    /** Interest rate */
    readonly InterestRate: 1;
    /** Currency */
    readonly Currency: 2;
    /** Credit */
    readonly Credit: 3;
    /** Equity */
    readonly Equity: 4;
    /** Commodity */
    readonly Commodity: 5;
    /** Other */
    readonly Other: 6;
    /** Cash */
    readonly Cash: 7;
    /** Debt */
    readonly Debt: 8;
    /** Fund
        Such as mutual fund, collective investment vehicle, investment program, specialized account program. */
    readonly Fund: 9;
    /** Loan facility */
    readonly LoanFacility: 10;
    /** Index
        A main index identified as a security type, for example under EU SFTR reporting. */
    readonly Index: 11;
}>;
export type AssetClass = (typeof AssetClass)[keyof typeof AssetClass];
