/**
 * Specifies the action taken as a result of the PartyActionType(2239) of the PartyActionRequest(35=DH) message.
 * - Tag: 2332
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const PartyActionResponse: Readonly<{
    /** Accepted
        The action request is accepted for processing. */
    readonly Accepted: 0;
    /** Completed
        The processing of the requested action has been successfully completed. */
    readonly Completed: 1;
    /** Rejected
        The action request was rejected. PartyActionRejectReason(2233) should be used to specify the rejection reason */
    readonly Rejected: 2;
}>;
export type PartyActionResponse = (typeof PartyActionResponse)[keyof typeof PartyActionResponse];
