/**
 * Specifies the affirmation status of the confirmation.
 * - Tag: 940
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AffirmStatus: Readonly<{
    /** Received */
    readonly Received: 1;
    /** Confirm rejected, i.e. not affirmed */
    readonly ConfirmRejected: 2;
    /** Affirmed */
    readonly Affirmed: 3;
}>;
export type AffirmStatus = (typeof AffirmStatus)[keyof typeof AffirmStatus];
