/**
 * Final price type of the commodity as specified by the trading venue.
 * - Tag: 2736
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const CommodityFinalPriceType: Readonly<{
    /** Argus McCloskey */
    readonly ArgusMcCloskey: 0;
    /** Baltic */
    readonly Baltic: 1;
    /** Exchange */
    readonly Exchange: 2;
    /** Global Coal */
    readonly GlobalCoal: 3;
    /** IHS McCloskey */
    readonly IHSMcCloskey: 4;
    /** Platts */
    readonly Platts: 5;
    /** Other */
    readonly Other: 99;
}>;
export type CommodityFinalPriceType = (typeof CommodityFinalPriceType)[keyof typeof CommodityFinalPriceType];
