/**
 * Specifies the source of the price(s) of the security used in the calculation of the metrics or analytics data.
 * - Tag: 2993
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MetricsCalculationPriceSource: Readonly<{
    /** Real-time
        Real-time market prices used as the data source in metrics/analytics calculation. */
    readonly Realtime: 1;
    /** End of day
        Official end of day price (marking) used as the data source in metrics/analytics calculation. */
    readonly EndOfDay: 2;
}>;
export type MetricsCalculationPriceSource = (typeof MetricsCalculationPriceSource)[keyof typeof MetricsCalculationPriceSource];
