/**
 * Identifies the type of Quote Response.
 * - Tag: 694
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const QuoteRespType: Readonly<{
    /** Hit/Lift */
    readonly Hit: 1;
    /** Counter */
    readonly Counter: 2;
    /** Expired */
    readonly Expired: 3;
    /** Cover
        Trade was done with another quote provider. Quote provider's original quoted price was the best price not traded (i.e. the cover price). */
    readonly Cover: 4;
    /** Done away
        Trade was done with another quote provider. */
    readonly DoneAway: 5;
    /** Pass */
    readonly Pass: 6;
    /** End trade
        Indicates an end to the trade negotiation. */
    readonly EndTrade: 7;
    /** Timed out */
    readonly TimedOut: 8;
    /** Tied
        Trade was done with another quote provider. Quote provider's original quoted price was the same as the traded price. */
    readonly Tied: 9;
    /** Tied cover
        Trade was done with another quote provider. Quote provider's original quoted price was the best price not traded. There were other quote provider(s) at the same price. */
    readonly TiedCover: 10;
    /** Accept
        Used in a response to acknowledge an action communicated by the counterparty. */
    readonly Accept: 11;
    /** Terminate contract
        Used to communicate the termination of an existing contract. */
    readonly TerminateContract: 12;
}>;
export type QuoteRespType = (typeof QuoteRespType)[keyof typeof QuoteRespType];
