/**
 * Specifies whether a quote is public, i.e. available to the market, or private, i.e. available to a specified counterparty only.
 * - Tag: 1171
 * - FIX Specification type: Boolean
 * - Mapped type: string
 * @readonly
 * @public
 */
export declare const PrivateQuote: Readonly<{
    /** Private Quote */
    readonly PrivateQuote: "Y";
    /** Public Quote */
    readonly PublicQuote: "N";
}>;
export type PrivateQuote = (typeof PrivateQuote)[keyof typeof PrivateQuote];
