/**
 * Identifies whether the allocation is to be sub-allocated or allocated to a third party
 * - Tag: 992
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const IndividualAllocType: Readonly<{
    /** Sub Allocate */
    readonly SubAllocate: 1;
    /** Third Party Allocation */
    readonly ThirdPartyAllocation: 2;
}>;
export type IndividualAllocType = (typeof IndividualAllocType)[keyof typeof IndividualAllocType];
