/**
 * Specifies the action taken by counterparty order handling system as a result of the action type indicated in MassActionType of the Order Mass Action Request.
 * - Tag: 1375
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MassActionResponse: Readonly<{
    /** Rejected - See MassActionRejectReason(1376) */
    readonly Rejected: 0;
    /** Accepted */
    readonly Accepted: 1;
    /** Completed */
    readonly Completed: 2;
}>;
export type MassActionResponse = (typeof MassActionResponse)[keyof typeof MassActionResponse];
