/**
 * The status of risk limits for a party.
 * - Tag: 2355
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PartyRiskLimitStatus: Readonly<{
    /** Disabled
        Risk limits for party is disabled. */
    readonly Disabled: 0;
    /** Enabled
        Risk limits for party is enabled. */
    readonly Enabled: 1;
}>;
export type PartyRiskLimitStatus = (typeof PartyRiskLimitStatus)[keyof typeof PartyRiskLimitStatus];
