/**
 * Type of test gateway information.
 * - Tag: 3094
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TestGatewayDetailType: Readonly<{
    /** Market data gateway IP address
        IP address of the market data gateway of a venue. */
    readonly MarketDataGatewayIPAddress: 0;
    /** Market data gateway port number
        Port for the IP address of the market data gateway of a venue. */
    readonly MarketDataGatewayPortNumber: 1;
    /** Market data gateway data format
        Data format for market data. */
    readonly MarketDataGatewayDataFormat: 2;
    /** Market data gateway format version
        Version of the data format for market data. */
    readonly MarketDataGatewayFormatVersion: 3;
    /** Market data gateway routing IP address
        Intermediate gateway that is needed to setup the IP route to the actual market data gateway. */
    readonly MarketDataGatewayRoutingIPAddress: 4;
    /** Order entry gateway IP address
        IP address of the order entry gateway of a venue. */
    readonly OrderEntryGatewayIPAddress: 5;
    /** Order entry gateway port number
        Port for the IP address of the order entry gateway of a venue. */
    readonly OrderEntryGatewayPortNumber: 6;
    /** Order entry gateway data format
        Data format for order entry. */
    readonly OrderEntryGatewayDataFormat: 7;
    /** Order entry gateway format version
        Version of the data format for order entry. */
    readonly OrderEntryGatewayFormatVersion: 8;
    /** Order entry gateway routing IP address
        Intermediate gateway that is needed to setup the IP route to the actual order entry gateway. */
    readonly OrderEntryGatewayRoutingIPAddress: 9;
}>;
export type TestGatewayDetailType = (typeof TestGatewayDetailType)[keyof typeof TestGatewayDetailType];
