/**
 * Reason for trade aggregation request being rejected.
 * - Tag: 2791
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeAggregationRejectReason: Readonly<{
    /** Unknown order(s) */
    readonly UnknownOrders: 0;
    /** Unknown execution/fill(s) */
    readonly UnknownExecutionFills: 1;
    /** Other */
    readonly Other: 99;
}>;
export type TradeAggregationRejectReason = (typeof TradeAggregationRejectReason)[keyof typeof TradeAggregationRejectReason];
