/**
 * Result party detail definition request.
 * - Tag: 1877
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PartyDetailRequestResult: Readonly<{
    /** Successful (default) */
    readonly Successful: 0;
    /** Invalid party(-ies) */
    readonly InvalidParty: 1;
    /** Invalid related party(-ies) */
    readonly InvalidRelatedParty: 2;
    /** Invalid party status(es) */
    readonly InvalidPartyStatus: 3;
    /** Not authorized */
    readonly NotAuthorized: 98;
    /** Other */
    readonly Other: 99;
}>;
export type PartyDetailRequestResult = (typeof PartyDetailRequestResult)[keyof typeof PartyDetailRequestResult];
