/**
 * Code to identify the type of liquidity indicator.
 * - Tag: 409
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const LiquidityIndType: Readonly<{
    /** 5-day moving average */
    readonly FiveDayMovingAverage: 1;
    /** 20-day moving average */
    readonly TwentyDayMovingAverage: 2;
    /** Normal market size */
    readonly NormalMarketSize: 3;
    /** Other */
    readonly Other: 4;
}>;
export type LiquidityIndType = (typeof LiquidityIndType)[keyof typeof LiquidityIndType];
