/**
 * Type of NBBO information.
 * - Tag: 2831
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const NBBOEntryType: Readonly<{
    /** Bid
        May apply to price or quantity. */
    readonly Bid: 0;
    /** Offer
        May apply to price or quantity. */
    readonly Offer: 1;
    /** Mid-price */
    readonly MidPrice: 2;
}>;
export type NBBOEntryType = (typeof NBBOEntryType)[keyof typeof NBBOEntryType];
