/**
 * Identifies allocation transaction type *** SOME VALUES HAVE BEEN REPLACED - See "Replaced Features and Supported Approach" ***
 * - Tag: 71
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const AllocTransType: Readonly<{
    /** New */
    readonly New: "0";
    /** Replace */
    readonly Replace: "1";
    /** Cancel */
    readonly Cancel: "2";
    /** Reversal */
    readonly Reversal: "6";
}>;
export type AllocTransType = (typeof AllocTransType)[keyof typeof AllocTransType];
