/**
 * The default election for determining settlement price.
 * - Tag: 42217
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CashSettlPriceDefault: Readonly<{
    /** Close
        Official closing price. */
    readonly Close: 0;
    /** Hedge
        Determined by the hedging party. */
    readonly Hedge: 1;
}>;
export type CashSettlPriceDefault = (typeof CashSettlPriceDefault)[keyof typeof CashSettlPriceDefault];
