/**
 * Describes action recipient should take if a throttle limit were exceeded.
 * - Tag: 1685
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ThrottleInst: Readonly<{
    /** Reject if throttle limit exceeded */
    readonly RejectIfThrottleLimitExceeded: 0;
    /** Queue if throttle limit exceeded */
    readonly QueueIfThrottleLimitExceeded: 1;
}>;
export type ThrottleInst = (typeof ThrottleInst)[keyof typeof ThrottleInst];
