/**
 * Defines the type of price protection the customer requires on their order.
 * - Tag: 1092
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PriceProtectionScope: Readonly<{
    /** None */
    readonly None: "0";
    /** Local (Exchange, ECN, ATS) */
    readonly Local: "1";
    /** National (Across all national markets) */
    readonly National: "2";
    /** Global (Across all markets) */
    readonly Global: "3";
}>;
export type PriceProtectionScope = (typeof PriceProtectionScope)[keyof typeof PriceProtectionScope];
