/**
 * Status of party details definition request.
 * - Tag: 1878
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PartyDetailRequestStatus: Readonly<{
    /** Accepted */
    readonly Accepted: 0;
    /** Accepted with changes */
    readonly AcceptedWithChanges: 1;
    /** Rejected */
    readonly Rejected: 2;
    /** Acceptance pending */
    readonly AcceptancePending: 3;
}>;
export type PartyDetailRequestStatus = (typeof PartyDetailRequestStatus)[keyof typeof PartyDetailRequestStatus];
