/**
 * Type of data source identifier.
 * - Tag: 41282
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const StreamCommodityDataSourceIDType: Readonly<{
    /** City (4 character business center code) */
    readonly City: 0;
    /** Airport (IATA standard) */
    readonly Airport: 1;
    /** Weather station WBAN (Weather Bureau Army Navy) */
    readonly WeatherStation: 2;
    /** Weather index WMO (World Meteorological Organization) */
    readonly WeatherIndex: 3;
}>;
export type StreamCommodityDataSourceIDType = (typeof StreamCommodityDataSourceIDType)[keyof typeof StreamCommodityDataSourceIDType];
