/**
 * Indicates the type of transfer report.
 * - Tag: 2444
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TransferReportType: Readonly<{
    /** Submit */
    readonly Submit: 0;
    /** Alleged */
    readonly Alleged: 1;
}>;
export type TransferReportType = (typeof TransferReportType)[keyof typeof TransferReportType];
