/**
 * Indicates the type of transfer.
 * - Tag: 2441
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TransferScope: Readonly<{
    /** Inter-firm transfer */
    readonly InterFirmTransfer: 0;
    /** Intra-firm transfer */
    readonly IntraFirmTransfer: 1;
    /** Clearing Member Trade Assignment */
    readonly CMTA: 2;
}>;
export type TransferScope = (typeof TransferScope)[keyof typeof TransferScope];
