/**
 * Identifies the status of a reversal transaction.
 * - Tag: 1738
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AllocReversalStatus: Readonly<{
    /** Completed */
    readonly Completed: 0;
    /** Refused */
    readonly Refused: 1;
    /** Cancelled */
    readonly Cancelled: 2;
}>;
export type AllocReversalStatus = (typeof AllocReversalStatus)[keyof typeof AllocReversalStatus];
