/**
 * Indicates whether follow-up confirmation of exercise (written or electronic) is required following telephonic notice by the buyer to the seller or seller's agent.
 * - Tag: 41111
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ExerciseConfirmationMethod: Readonly<{
    /** Not required */
    readonly NotRequired: 0;
    /** Non-electronic */
    readonly NonElectronic: 1;
    /** Electronic */
    readonly Electronic: 2;
    /** Unknown at time of report */
    readonly Unknown: 3;
}>;
export type ExerciseConfirmationMethod = (typeof ExerciseConfirmationMethod)[keyof typeof ExerciseConfirmationMethod];
