/**
 * Identifies the type of Allocation linkage when AllocLinkID(196) is used.
 * - Tag: 197
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AllocLinkType: Readonly<{
    /** FX Netting */
    readonly FXNetting: 0;
    /** FX Swap */
    readonly FXSwap: 1;
}>;
export type AllocLinkType = (typeof AllocLinkType)[keyof typeof AllocLinkType];
