/**
 * Specifies the transaction type of the risk limit check request.
 * - Tag: 2320
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RiskLimitCheckTransType: Readonly<{
    /** New */
    readonly New: 0;
    /** Cancel */
    readonly Cancel: 1;
    /** Replace */
    readonly Replace: 2;
}>;
export type RiskLimitCheckTransType = (typeof RiskLimitCheckTransType)[keyof typeof RiskLimitCheckTransType];
