/**
 * Indicates the reason a Trading Session Status Request was rejected.
 * - Tag: 567
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradSesStatusRejReason: Readonly<{
    /** Unknown or invalid TradingSessionID */
    readonly UnknownOrInvalidTradingSessionID: 1;
    /** Other */
    readonly Other: 99;
}>;
export type TradSesStatusRejReason = (typeof TradSesStatusRejReason)[keyof typeof TradSesStatusRejReason];
