/**
 * Specifies the type of respondents requested.
 * - Tag: 1172
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RespondentType: Readonly<{
    /** All market participants */
    readonly AllMarketParticipants: 1;
    /** Specified market participants */
    readonly SpecifiedMarketParticipants: 2;
    /** All Market Makers */
    readonly AllMarketMakers: 3;
    /** Primary Market Maker(s) */
    readonly PrimaryMarketMaker: 4;
}>;
export type RespondentType = (typeof RespondentType)[keyof typeof RespondentType];
