/**
 * Exercise Method used to in performing assignment.
 * - Tag: 747
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const ExerciseMethod: Readonly<{
    /** Automatic */
    readonly Automatic: "A";
    /** Manual */
    readonly Manual: "M";
}>;
export type ExerciseMethod = (typeof ExerciseMethod)[keyof typeof ExerciseMethod];
