/**
 * The type of instrument relationship
 * - Tag: 1648
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RelatedInstrumentType: Readonly<{
    /** "hedges for" instrument */
    readonly HedgesForInstrument: 1;
    /** Underlier */
    readonly Underlier: 2;
    /** Equity equivalent */
    readonly EquityEquivalent: 3;
    /** Nearest exchange traded contract */
    readonly NearestExchangeTradedContract: 4;
    /** Retail equivalent of wholesale instrument */
    readonly RetailEquivalent: 5;
    /** Leg
        Used to associate or link InstrumentLeg to Instrument in messages where there can be multiple instruments, such as in Email(35=C) and News(35=B) messages. */
    readonly Leg: 6;
}>;
export type RelatedInstrumentType = (typeof RelatedInstrumentType)[keyof typeof RelatedInstrumentType];
