/**
 * State of the trading session.
 * - Tag: 340
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradSesStatus: Readonly<{
    /** Unknown */
    readonly Unknown: 0;
    /** Halted */
    readonly Halted: 1;
    /** Open */
    readonly Open: 2;
    /** Closed */
    readonly Closed: 3;
    /** Pre-Open */
    readonly PreOpen: 4;
    /** Pre-Close */
    readonly PreClose: 5;
    /** Request Rejected */
    readonly RequestRejected: 6;
    /** Outage */
    readonly Outage: 7;
    /** Partial outage */
    readonly PartialOutage: 8;
}>;
export type TradSesStatus = (typeof TradSesStatus)[keyof typeof TradSesStatus];
