export function humidex(tdb: any, rh: any, options?: { round: boolean; }): { humidex: any; discomfort: string; }; /** * - a result set containing the humidex and * discomfort level. */ export type HumidexResult = { /** * - the humdidex given the provided dry bulb * air temperature and relative humidity. */ humidex: number; /** * - a human description of how the weather * would be felt by the average person. */ discomfort: string; }; //# sourceMappingURL=humidex.d.ts.map