/**
 * Indicates the status of a network connection
 * - Tag: 928
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StatusValue: Readonly<{
    /** Connected */
    readonly Connected: 1;
    /** Not Connected - down expected up */
    readonly NotConnectedUnexpected: 2;
    /** Not Connected - down expected down */
    readonly NotConnectedExpected: 3;
    /** In Process */
    readonly InProcess: 4;
}>;
export type StatusValue = (typeof StatusValue)[keyof typeof StatusValue];
