/**
 * Type of exercise of a derivatives security
 * - Tag: 1194
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ExerciseStyle: Readonly<{
    /** European */
    readonly European: 0;
    /** American */
    readonly American: 1;
    /** Bermuda */
    readonly Bermuda: 2;
    /** Other */
    readonly Other: 99;
}>;
export type ExerciseStyle = (typeof ExerciseStyle)[keyof typeof ExerciseStyle];
