/**
 * Indicates the status of the party identified with PartyDetailID(1691).
 * - Tag: 1672
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PartyDetailStatus: Readonly<{
    /** Active (default if not specified) */
    readonly Active: 0;
    /** Suspended */
    readonly Suspended: 1;
    /** Halted */
    readonly Halted: 2;
}>;
export type PartyDetailStatus = (typeof PartyDetailStatus)[keyof typeof PartyDetailStatus];
