/**
 * Indicates whether a message decrements the number of outstanding requests, e.g. one where ThrottleType = Outstanding Requests.
 * - Tag: 1686
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ThrottleCountIndicator: Readonly<{
    /** Outstanding requests unchanged */
    readonly OutstandingRequestsUnchanged: 0;
    /** Outstanding requests decreased */
    readonly OutstandingRequestsDecreased: 1;
}>;
export type ThrottleCountIndicator = (typeof ThrottleCountIndicator)[keyof typeof ThrottleCountIndicator];
