import { IMeasure } from '../types'; export type temperatureSystems = 'metric' | 'imperial'; export type temperatureUnits = 'C' | 'K' | 'F' | 'R'; export declare const temperature: IMeasure;