/**
 * Indication that a block trade will be allocated.
 * - Tag: 1980
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const BlockTrdAllocIndicator: Readonly<{
    /** Block to be allocated */
    readonly BlockToBeAllocated: 0;
    /** Block not to be allocated */
    readonly BlockNotToBeAllocated: 1;
    /** Allocated trade
        A sub-trade of a block trade. */
    readonly AllocatedTrade: 2;
}>;
export type BlockTrdAllocIndicator = (typeof BlockTrdAllocIndicator)[keyof typeof BlockTrdAllocIndicator];
