/**
 * Type of statistical value.
 * - Tag: 2479
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MDStatisticValueType: Readonly<{
    /** Absolute */
    readonly Absolute: 1;
    /** Percentage */
    readonly Percentage: 2;
}>;
export type MDStatisticValueType = (typeof MDStatisticValueType)[keyof typeof MDStatisticValueType];
