/**
 * The type of quote used to determine the cash settlement price.
 * - Tag: 40027
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CashSettlQuoteMethod: Readonly<{
    /** Bid */
    readonly Bid: 0;
    /** Mid */
    readonly Mid: 1;
    /** Offer */
    readonly Offer: 2;
}>;
export type CashSettlQuoteMethod = (typeof CashSettlQuoteMethod)[keyof typeof CashSettlQuoteMethod];
