/**
 * Used to classify the type of market segment.
 * - Tag: 2543
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MarketSegmentType: Readonly<{
    /** Pool
        Used when multiple market segments are being grouped or pooled together. */
    readonly Pool: 1;
    /** Retail */
    readonly Retail: 2;
    /** Wholesale */
    readonly Wholesale: 3;
}>;
export type MarketSegmentType = (typeof MarketSegmentType)[keyof typeof MarketSegmentType];
