/**
 * Type of settlement price
 * - Tag: 731
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const SettlPriceType: Readonly<{
    /** Final */
    readonly Final: 1;
    /** Theoretical */
    readonly Theoretical: 2;
}>;
export type SettlPriceType = (typeof SettlPriceType)[keyof typeof SettlPriceType];
