/**
 * The status of this execution acknowledgement message.
 * - Tag: 1036
 * - FIX Specification type: char
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const ExecAckStatus: Readonly<{
    /** Received, not yet processed */
    readonly Received: "0";
    /** Accepted */
    readonly Accepted: "1";
    /** Don't know / Rejected */
    readonly DontKnow: "2";
}>;
export type ExecAckStatus = (typeof ExecAckStatus)[keyof typeof ExecAckStatus];
