/**
 * Identifies the trade aggregation transaction type.
 * - Tag: 2788
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeAggregationTransType: Readonly<{
    /** New */
    readonly New: 0;
    /** Cancel */
    readonly Cancel: 1;
    /** Replace */
    readonly Replace: 2;
}>;
export type TradeAggregationTransType = (typeof TradeAggregationTransType)[keyof typeof TradeAggregationTransType];
