/**
 * Specifies scope of Order Mass Cancel Request.
 * - Tag: 530
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const MassCancelRequestType: Readonly<{
    /** Cancel orders for a security */
    readonly CancelOrdersForASecurity: "1";
    /** Cancel orders for an underlying security */
    readonly CancelOrdersForAnUnderlyingSecurity: "2";
    /** Cancel orders for a product */
    readonly CancelOrdersForAProduct: "3";
    /** Cancel orders for a CFICode */
    readonly CancelOrdersForACFICode: "4";
    /** Cancel orders for a security type */
    readonly CancelOrdersForASecurityType: "5";
    /** Cancel orders for a trading session */
    readonly CancelOrdersForATradingSession: "6";
    /** Cancel all orders */
    readonly CancelAllOrders: "7";
    /** Cancel orders for a market */
    readonly CancelOrdersForAMarket: "8";
    /** Cancel orders for a market segment */
    readonly CancelOrdersForAMarketSegment: "9";
    /** Cancel orders for a security group */
    readonly CancelOrdersForASecurityGroup: "A";
    /** Cancel orders for an issuer */
    readonly CancelOrdersForSecurityIssuer: "B";
    /** Cancel orders for an issuer of underlying security */
    readonly CancelForIssuerOfUnderlyingSecurity: "C";
}>;
export type MassCancelRequestType = (typeof MassCancelRequestType)[keyof typeof MassCancelRequestType];
