/**
 * Used to indicate whether the quoting system allows only one quote to be active at a time for the quote issuer or market maker.
 * - Tag: 2837
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const SingleQuoteIndicator: Readonly<{
    /** Multiple quotes allowed */
    readonly MultipleQuotesAllowed: "N";
    /** Only one quote allowed */
    readonly OnlyOneQuoteAllowed: "Y";
}>;
export type SingleQuoteIndicator = (typeof SingleQuoteIndicator)[keyof typeof SingleQuoteIndicator];
