/**
 * Defines how adjustments will be made to the contract should one or more of the extraordinary events occur.
 * - Tag: 2602
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ExtraordinaryEventAdjustmentMethod: Readonly<{
    /** Calculation agent
        The Calculation Agent has the right to adjust the terms of the trade following a corporate action. */
    readonly CalculationAgent: 0;
    /** Options exchange
        The trade will be adjusted in accordance with any adjustment made by the exchange on which options on the underlying are listed. */
    readonly OptionsExchange: 1;
}>;
export type ExtraordinaryEventAdjustmentMethod = (typeof ExtraordinaryEventAdjustmentMethod)[keyof typeof ExtraordinaryEventAdjustmentMethod];
