/**
 * Status of the transfer.
 * - Tag: 2442
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TransferStatus: Readonly<{
    /** Received */
    readonly Received: 0;
    /** Rejected by intermediary */
    readonly RejectedByIntermediary: 1;
    /** Accept pending */
    readonly AcceptPending: 2;
    /** Accepted */
    readonly Accepted: 3;
    /** Declined */
    readonly Declined: 4;
    /** Cancelled */
    readonly Cancelled: 5;
}>;
export type TransferStatus = (typeof TransferStatus)[keyof typeof TransferStatus];
