/**
 * Indicates the status of the risk limit check request.
 * - Tag: 2325
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RiskLimitCheckRequestStatus: Readonly<{
    /** Approved
        Request has been accepted and processed. The credit amount requested has been reserved for the transaction. */
    readonly Approved: 0;
    /** Partially approved
        Only a partial amount of the credit amount requested has been approved and has been reserved for the transaction. */
    readonly PartiallyApproved: 1;
    /** Rejected */
    readonly Rejected: 2;
    /** Approval pending */
    readonly ApprovalPending: 3;
    /** Cancelled */
    readonly Cancelled: 4;
}>;
export type RiskLimitCheckRequestStatus = (typeof RiskLimitCheckRequestStatus)[keyof typeof RiskLimitCheckRequestStatus];
