/**
 * Identifies the status of an allocation when using a pre-clear workflow.
    Note: This is different from the give-up process where a trade is cleared and then given up and goes through the allocation flow.
 * - Tag: 1840
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeAllocStatus: Readonly<{
    /** Pending clear */
    readonly PendingClear: 0;
    /** Claimed */
    readonly Claimed: 1;
    /** Cleared */
    readonly Cleared: 2;
    /** Rejected */
    readonly Rejected: 3;
}>;
export type TradeAllocStatus = (typeof TradeAllocStatus)[keyof typeof TradeAllocStatus];
