/**
 * Used to indicate the status of the trade match report submission.
 * - Tag: 1896
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeMatchAckStatus: Readonly<{
    /** Received, not yet processed */
    readonly ReceivedNotProcessed: 0;
    /** Accepted */
    readonly Accepted: 1;
    /** Rejected */
    readonly Rejected: 2;
}>;
export type TradeMatchAckStatus = (typeof TradeMatchAckStatus)[keyof typeof TradeMatchAckStatus];
