/**
 * Operator to perform on the instrument(s) specified
 * - Tag: 1535
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const InstrumentScopeOperator: Readonly<{
    /** Include */
    readonly Include: 1;
    /** Exclude */
    readonly Exclude: 2;
}>;
export type InstrumentScopeOperator = (typeof InstrumentScopeOperator)[keyof typeof InstrumentScopeOperator];
