/**
 * Status of a FIX session
 * - Tag: 1409
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const SessionStatus: Readonly<{
    /** Session active */
    readonly SessionActive: 0;
    /** Session password changed */
    readonly SessionPasswordChanged: 1;
    /** Session password due to expire */
    readonly SessionPasswordDueToExpire: 2;
    /** New session password does not comply with policy */
    readonly NewSessionPasswordDoesNotComplyWithPolicy: 3;
    /** Session logout complete */
    readonly SessionLogoutComplete: 4;
    /** Invalid username or password */
    readonly InvalidUsernameOrPassword: 5;
    /** Account locked */
    readonly AccountLocked: 6;
    /** Logons are not allowed at this time */
    readonly LogonsAreNotAllowedAtThisTime: 7;
    /** Password expired */
    readonly PasswordExpired: 8;
    /** Received MsgSeqNum(34) is too low. */
    readonly ReceivedMsgSeqNumTooLow: 9;
    /** Received NextExpectedMsgSeqNum(789) is too high. */
    readonly ReceivedNextExpectedMsgSeqNumTooHigh: 10;
}>;
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
