/**
 * Reason for cancelling or replacing an Allocation Instruction or Allocation Report message
 * - Tag: 796
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AllocCancReplaceReason: Readonly<{
    /** Original details incomplete/incorrect */
    readonly OriginalDetailsIncomplete: 1;
    /** Change in underlying order details */
    readonly ChangeInUnderlyingOrderDetails: 2;
    /** Cancelled by give-up firm */
    readonly CancelledByGiveupFirm: 3;
    /** Other */
    readonly Other: 99;
}>;
export type AllocCancReplaceReason = (typeof AllocCancReplaceReason)[keyof typeof AllocCancReplaceReason];
