/**
 * Instruction on how to add a trade to an allocation group when it is being given-up.
 * - Tag: 1848
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TradeAllocGroupInstruction: Readonly<{
    /** Add to an existing allocation group if one exists. */
    readonly Add: 0;
    /** Do not add the trade to an allocation group. */
    readonly DoNotAdd: 1;
}>;
export type TradeAllocGroupInstruction = (typeof TradeAllocGroupInstruction)[keyof typeof TradeAllocGroupInstruction];
