/**
 * Status of Trade Request.
 * - Tag: 750
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeRequestStatus: Readonly<{
    /** Accepted */
    readonly Accepted: 0;
    /** Completed */
    readonly Completed: 1;
    /** Rejected */
    readonly Rejected: 2;
}>;
export type TradeRequestStatus = (typeof TradeRequestStatus)[keyof typeof TradeRequestStatus];
