/**
 * Specifies the side of the relative value.
 * - Tag: 2532
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const RelativeValueSide: Readonly<{
    /** Bid */
    readonly Bid: 1;
    /** Mid */
    readonly Mid: 2;
    /** Offer */
    readonly Offer: 3;
}>;
export type RelativeValueSide = (typeof RelativeValueSide)[keyof typeof RelativeValueSide];
