/**
 * The quote side from which the index price is to be determined.
 * - Tag: 2601
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StrikeIndexQuote: Readonly<{
    /** Bid */
    readonly Bid: 0;
    /** Mid */
    readonly Mid: 1;
    /** Offer */
    readonly Offer: 2;
}>;
export type StrikeIndexQuote = (typeof StrikeIndexQuote)[keyof typeof StrikeIndexQuote];
