/**
 * Action to take should throttle limit be exceeded.
 * - Tag: 1611
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ThrottleAction: Readonly<{
    /** Queue inbound */
    readonly QueueInbound: 0;
    /** Queue outbound */
    readonly QueueOutbound: 1;
    /** Reject */
    readonly Reject: 2;
    /** Disconnect */
    readonly Disconnect: 3;
    /** Warning */
    readonly Warning: 4;
}>;
export type ThrottleAction = (typeof ThrottleAction)[keyof typeof ThrottleAction];
