/**
 * Indicates how control of trading session and subsession transitions are performed.
 * - Tag: 1785
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradSesControl: Readonly<{
    /** Automatic (Default) */
    readonly Automatic: 0;
    /** Manual */
    readonly Manual: 1;
}>;
export type TradSesControl = (typeof TradSesControl)[keyof typeof TradSesControl];
