/**
 * Identifies the status of the Confirmation.
 * - Tag: 665
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const ConfirmStatus: Readonly<{
    /** Received */
    readonly Received: 1;
    /** Mismatched Account */
    readonly MismatchedAccount: 2;
    /** Missing Settlement Instructions */
    readonly MissingSettlementInstructions: 3;
    /** Confirmed */
    readonly Confirmed: 4;
    /** Request Rejected */
    readonly RequestRejected: 5;
}>;
export type ConfirmStatus = (typeof ConfirmStatus)[keyof typeof ConfirmStatus];
