/**
 * Specifies the market scope of the market data.
 * - Tag: 546
 * - FIX Specification type: MultipleCharValue
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const Scope: Readonly<{
    /** Local Market (Exchange, ECN, ATS) */
    readonly LocalMarket: "1";
    /** National */
    readonly National: "2";
    /** Global */
    readonly Global: "3";
}>;
export type Scope = (typeof Scope)[keyof typeof Scope];
