/**
 * Indicates market maker participation in security.
 * - Tag: 1655
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const MarketMakerActivity: Readonly<{
    /** No participation */
    readonly NoParticipation: 0;
    /** Buy participation */
    readonly BuyParticipation: 1;
    /** Sell participation */
    readonly SellParticipation: 2;
    /** Both buy and sell participation */
    readonly BothBuyAndSellParticipation: 3;
}>;
export type MarketMakerActivity = (typeof MarketMakerActivity)[keyof typeof MarketMakerActivity];
