/**
 * Identifies if, and how, the trade is to be allocated or split.
 * - Tag: 826
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeAllocIndicator: Readonly<{
    /** Allocation not required */
    readonly AllocationNotRequired: 0;
    /** Allocation required (give-up trade) allocation information not provided (incomplete) */
    readonly AllocationRequired: 1;
    /** Use allocation provided with the trade */
    readonly UseAllocationProvidedWithTheTrade: 2;
    /** Allocation give-up executor */
    readonly AllocationGiveUpExecutor: 3;
    /** Allocation from executor */
    readonly AllocationFromExecutor: 4;
    /** Allocation to claim account */
    readonly AllocationToClaimAccount: 5;
    /** Trade split */
    readonly TradeSplit: 6;
}>;
export type TradeAllocIndicator = (typeof TradeAllocIndicator)[keyof typeof TradeAllocIndicator];
