/**
 * Specifies the type of limit amount check being requested.
 * - Tag: 2323
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RiskLimitCheckRequestType: Readonly<{
    /** All or none (default if not specified).
        The limit check request is for the full amount requested or none at all. Request can only be responded to with a full approval of the amount requested or a rejection of the request. */
    readonly AllOrNone: 0;
    /** Partial
        The requester will accept a partial approval of the requested credit limit amount. */
    readonly Partial: 1;
}>;
export type RiskLimitCheckRequestType = (typeof RiskLimitCheckRequestType)[keyof typeof RiskLimitCheckRequestType];
