/**
 * The consequences of market disruption events.
 * - Tag: 41087
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MarketDisruptionProvision: Readonly<{
    /** Not applicable */
    readonly NotApplicable: 0;
    /** Applicable */
    readonly Applicable: 1;
    /** As specified in master agreement */
    readonly AsInMasterAgreement: 2;
    /** As specified in confirmation */
    readonly AsInConfirmation: 3;
}>;
export type MarketDisruptionProvision = (typeof MarketDisruptionProvision)[keyof typeof MarketDisruptionProvision];
