/**
 * Type of throttle.
 * - Tag: 1612
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ThrottleType: Readonly<{
    /** Inbound Rate */
    readonly InboundRate: 0;
    /** Outstanding Requests */
    readonly OutstandingRequests: 1;
}>;
export type ThrottleType = (typeof ThrottleType)[keyof typeof ThrottleType];
