/**
 * Reason the transfer instruction was rejected.
 * - Tag: 2443
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TransferRejectReason: Readonly<{
    /** Success */
    readonly Success: 0;
    /** Invalid party */
    readonly InvalidParty: 1;
    /** Unknown instrument */
    readonly UnknownInstrument: 2;
    /** Not authorized to submit transfers */
    readonly UnauthorizedToSubmitXfer: 3;
    /** Unknown position */
    readonly UnknownPosition: 4;
    /** Other */
    readonly Other: 99;
}>;
export type TransferRejectReason = (typeof TransferRejectReason)[keyof typeof TransferRejectReason];
