/**
 * Specifies the type of action requested
 * - Tag: 1373
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MassActionType: Readonly<{
    /** Suspend orders */
    readonly SuspendOrders: 1;
    /** Release orders from suspension */
    readonly ReleaseOrdersFromSuspension: 2;
    /** Cancel orders */
    readonly CancelOrders: 3;
}>;
export type MassActionType = (typeof MassActionType)[keyof typeof MassActionType];
