/**
 * Identifies a specific settlement session
 * - Tag: 716
 * - FIX Specification type: String
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SettlSessID: Readonly<{
    /** Intraday */
    readonly Intraday: 'ITD';
    /** Regular Trading Hours */
    readonly RegularTradingHours: 'RTH';
    /** Electronic Trading Hours */
    readonly ElectronicTradingHours: 'ETH';
    /** End Of Day */
    readonly EndOfDay: 'EOD';
}>;
