/**
 * Specifies the type of action to take or was taken for a given party.
 * - Tag: 2329
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PartyActionType: Readonly<{
    /** Suspend */
    readonly Suspend: 0;
    /** Halt trading */
    readonly HaltTrading: 1;
    /** Reinstate */
    readonly Reinstate: 2;
}>;
export type PartyActionType = (typeof PartyActionType)[keyof typeof PartyActionType];
