import { Pollutant } from '@shootismoke/convert'; import { OpenAQResults } from '../types'; /** * From some normalized data, calculate the dominant pollutant, i.e. the * pollutant that has the highest AQI * * @param results - The results data in OpenAQResult format. */ export declare function getDominantPol(results: OpenAQResults): Pollutant;