/**
 * Status of the AllocationInstructionAlertRequest(35=DU).
 * - Tag: 2768
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AllocRequestStatus: Readonly<{
    /** Accepted */
    readonly Accepted: 0;
    /** Rejected */
    readonly Rejected: 1;
}>;
export type AllocRequestStatus = (typeof AllocRequestStatus)[keyof typeof AllocRequestStatus];
