/**
 * Status of party detail definition for one party.
 * - Tag: 1879
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PartyDetailDefinitionStatus: Readonly<{
    /** Accepted */
    readonly Accepted: 0;
    /** Accepted with changes */
    readonly AcceptedWithChanges: 1;
    /** Rejected */
    readonly Rejected: 2;
}>;
