/**
 * Identifies reason for rejection (of a settlement instruction request message).
 * - Tag: 792
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const SettlInstReqRejCode: Readonly<{
    /** Unable to process request */
    readonly UnableToProcessRequest: 0;
    /** Unknown account */
    readonly UnknownAccount: 1;
    /** No matching settlement instructions found */
    readonly NoMatchingSettlementInstructionsFound: 2;
    /** Other */
    readonly Other: 99;
}>;
export type SettlInstReqRejCode = (typeof SettlInstReqRejCode)[keyof typeof SettlInstReqRejCode];
