/**
 * Expiration Quantity type
 * - Tag: 982
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ExpirationQtyType: Readonly<{
    /** Auto Exercise */
    readonly AutoExercise: 1;
    /** Non Auto Exercise */
    readonly NonAutoExercise: 2;
    /** Final Will Be Exercised */
    readonly FinalWillBeExercised: 3;
    /** Contrary Intention */
    readonly ContraryIntention: 4;
    /** Difference */
    readonly Difference: 5;
}>;
export type ExpirationQtyType = (typeof ExpirationQtyType)[keyof typeof ExpirationQtyType];
