/**
 * Scope details of the statistics to reduce the number of events being used as basis for the statistics.
 * - Tag: 2459
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MDStatisticScopeType: Readonly<{
    /** Entry rate */
    readonly EntryRate: 1;
    /** Modification rate */
    readonly ModificationRate: 2;
    /** Cancel rate */
    readonly CancelRate: 3;
    /** Downward move */
    readonly DownwardMove: 4;
    /** Upward move */
    readonly UpwardMove: 5;
}>;
export type MDStatisticScopeType = (typeof MDStatisticScopeType)[keyof typeof MDStatisticScopeType];
