/**
 * Code to represent the type of event
 * - Tag: 865
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const EventType: Readonly<{
    /** Put */
    readonly Put: 1;
    /** Call */
    readonly Call: 2;
    /** Tender */
    readonly Tender: 3;
    /** Sinking fund call */
    readonly SinkingFundCall: 4;
    /** Activation */
    readonly Activation: 5;
    /** Inactivation */
    readonly Inactiviation: 6;
    /** Last eligible trade date */
    readonly LastEligibleTradeDate: 7;
    /** Swap start date */
    readonly SwapStartDate: 8;
    /** Swap end date */
    readonly SwapEndDate: 9;
    /** Swap roll date */
    readonly SwapRollDate: 10;
    /** Swap next start date */
    readonly SwapNextStartDate: 11;
    /** Swap next roll date */
    readonly SwapNextRollDate: 12;
    /** First delivery date */
    readonly FirstDeliveryDate: 13;
    /** Last delivery date */
    readonly LastDeliveryDate: 14;
    /** Initial inventory due date */
    readonly InitialInventoryDueDate: 15;
    /** Final inventory due date */
    readonly FinalInventoryDueDate: 16;
    /** First intent date */
    readonly FirstIntentDate: 17;
    /** Last intent date */
    readonly LastIntentDate: 18;
    /** Position removal date */
    readonly PositionRemovalDate: 19;
    /** Minimum notice */
    readonly MinimumNotice: 20;
    /** Delivery start time */
    readonly DeliveryStartTime: 21;
    /** Delivery end time */
    readonly DeliveryEndTime: 22;
    /** First notice date
        The first day that a notice of intent to deliver a commodity can be made by a clearing house to a buyer in fulfillment of a given month's futures contract. */
    readonly FirstNoticeDate: 23;
    /** Last notice date
        The last day on which a clearing house may inform an investor that a seller intends to make delivery of a commodity that the investor previously bought in a futures contract. The date is governed by the rules of different exchanges and clearing houses, but may also be stated in the futures contract itself. */
    readonly LastNoticeDate: 24;
    /** First exercise date */
    readonly FirstExerciseDate: 25;
    /** Redemption date */
    readonly RedemptionDate: 26;
    /** Trade continuation effective date */
    readonly TrdCntntnEfctvDt: 27;
    /** Other */
    readonly Other: 99;
}>;
export type EventType = (typeof EventType)[keyof typeof EventType];
