/**
 * Indicates whether a message was queued as a result of throttling.
 * - Tag: 1609
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ThrottleStatus: Readonly<{
    /** Throttle limit not exceeded, not queued */
    readonly ThrottleLimitNotExceededNotQueued: 0;
    /** Queued due to throttle limit exceeded */
    readonly QueuedDueToThrottleLimitExceeded: 1;
}>;
export type ThrottleStatus = (typeof ThrottleStatus)[keyof typeof ThrottleStatus];
