/**
 * Status of the TestActionRequest(35=EN) message being responded to.
 * - Tag: 3068
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TestActionRequestStatus: Readonly<{
    /** Received, not yet processed */
    readonly Received: 0;
    /** Accepted */
    readonly Accepted: 1;
    /** Rejected
        Rejection reason provided in RejectText(1328). */
    readonly Rejected: 2;
}>;
export type TestActionRequestStatus = (typeof TestActionRequestStatus)[keyof typeof TestActionRequestStatus];
