/**
 * Type of statistics
 * - Tag: 1176
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StatsType: Readonly<{
    /** Exchange Last */
    readonly ExchangeLast: 1;
    /** High / Low Price */
    readonly High: 2;
    /** Average Price (VWAP, TWAP ... ) */
    readonly AveragePrice: 3;
    /** Turnover (Price * Qty) */
    readonly Turnover: 4;
}>;
export type StatsType = (typeof StatsType)[keyof typeof StatsType];
