/**
 * An indicator to override the normal procedure to roll up allocations for the same take-up firm.
 * - Tag: 1735
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AllocationRollupInstruction: Readonly<{
    /** Roll up */
    readonly Rollup: 0;
    /** Do not roll up */
    readonly DoNotRollUp: 1;
}>;
export type AllocationRollupInstruction = (typeof AllocationRollupInstruction)[keyof typeof AllocationRollupInstruction];
