/**
 * Acknowledgement status of a Quote(35=S) or QuoteCancel(35=Z) message submission.
 * - Tag: 1865
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const QuoteAckStatus: Readonly<{
    /** Received, not yet processed */
    readonly ReceivedNotYetProcessed: 0;
    /** Accepted */
    readonly Accepted: 1;
    /** Rejected */
    readonly Rejected: 2;
}>;
export type QuoteAckStatus = (typeof QuoteAckStatus)[keyof typeof QuoteAckStatus];
