/**
 * Indicates the status of a user
 * - Tag: 926
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const UserStatus: Readonly<{
    /** Logged In */
    readonly LoggedIn: 1;
    /** Not Logged In */
    readonly NotLoggedIn: 2;
    /** User Not Recognised */
    readonly UserNotRecognised: 3;
    /** Password Incorrect */
    readonly PasswordIncorrect: 4;
    /** Password Changed */
    readonly PasswordChanged: 5;
    /** Other */
    readonly Other: 6;
    /** Forced user logout by Exchange */
    readonly ForcedUserLogoutByExchange: 7;
    /** Session shutdown warning */
    readonly SessionShutdownWarning: 8;
    /** Throttle parameters changed */
    readonly ThrottleParametersChanged: 9;
}>;
export type UserStatus = (typeof UserStatus)[keyof typeof UserStatus];
