/**
 * Identifies the status of an individual quote. See also QuoteStatus(297) which is used for single Quotes.
 * - Tag: 1167
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const QuoteEntryStatus: Readonly<{
    /** Accepted */
    readonly Accepted: 0;
    /** Rejected */
    readonly Rejected: 5;
    /** Removed from Market */
    readonly RemovedFromMarket: 6;
    /** Expired */
    readonly Expired: 7;
    /** Locked Market Warning */
    readonly LockedMarketWarning: 12;
    /** Cross Market Warning */
    readonly CrossMarketWarning: 13;
    /** Canceled due to Lock Market */
    readonly CanceledDueToLockMarket: 14;
    /** Canceled due to Cross Market */
    readonly CanceledDueToCrossMarket: 15;
    /** Active */
    readonly Active: 16;
}>;
export type QuoteEntryStatus = (typeof QuoteEntryStatus)[keyof typeof QuoteEntryStatus];
