/**
 * Type of trade attribute defining a subgroup in an allocation group.
 * - Tag: 2980
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AllocGroupSubQtyType: Readonly<{
    /** Trade type */
    readonly TradeType: 1;
    /** Trade publication indicator */
    readonly TradePublicationIndicator: 2;
    /** Order handling instruction */
    readonly OrderHandlingInstruction: 3;
}>;
export type AllocGroupSubQtyType = (typeof AllocGroupSubQtyType)[keyof typeof AllocGroupSubQtyType];
