/**
 * Used to indicate the status of the trade submission (not the trade report)
 * - Tag: 1523
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const TrdAckStatus: Readonly<{
    /** Accepted */
    readonly Accepted: 0;
    /** Rejected */
    readonly Rejected: 1;
    /** Received */
    readonly Received: 2;
}>;
export type TrdAckStatus = (typeof TrdAckStatus)[keyof typeof TrdAckStatus];
