/**
 * Specifies the reason the PartyActionRequest(35=DH) was rejected.
 * - Tag: 2333
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PartyActionRejectReason: Readonly<{
    /** Invalid party or parties */
    readonly InvalidParty: 0;
    /** Unknown requesting party */
    readonly UnkReqParty: 1;
    /** Not authorized */
    readonly NotAuthorized: 98;
    /** Other */
    readonly Other: 99;
}>;
export type PartyActionRejectReason = (typeof PartyActionRejectReason)[keyof typeof PartyActionRejectReason];
