/**
 * Status of risk limit report.
 * - Tag: 2316
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RiskLimitReportStatus: Readonly<{
    /** Accepted */
    readonly Accepted: 0;
    /** Rejected */
    readonly Rejected: 1;
}>;
export type RiskLimitReportStatus = (typeof RiskLimitReportStatus)[keyof typeof RiskLimitReportStatus];
