/** * Convert tempraturs. * * Supports Kelvin, Celsius and Farenheit * @param from From which unit you want to convert * @param to To which unit you want to convert * @param value How many units you want to convert */ declare function __tempConverter(from: string, to: string, value: number): any; export { __tempConverter };