/**
 * Indicates the type of Network Response Message.
 * - Tag: 937
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const NetworkStatusResponseType: Readonly<{
    /** Full */
    readonly Full: 1;
    /** Incremental Update */
    readonly IncrementalUpdate: 2;
}>;
export type NetworkStatusResponseType = (typeof NetworkStatusResponseType)[keyof typeof NetworkStatusResponseType];
