/**
 * Reason the trade match report submission was rejected.
 * - Tag: 1897
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeMatchRejectReason: Readonly<{
    /** Successful */
    readonly Successful: 0;
    /** Invalid party information */
    readonly InvalidPartyInformation: 1;
    /** Unknown instrument */
    readonly UnknownInstrument: 2;
    /** Not authorized to report trades */
    readonly Unauthorized: 3;
    /** Invalid trade type */
    readonly InvalidTradeType: 4;
    /** Other */
    readonly Other: 99;
}>;
export type TradeMatchRejectReason = (typeof TradeMatchRejectReason)[keyof typeof TradeMatchRejectReason];
