import IBaseTemperature from '../interfaces/IBaseTemperature';
import IUnit from '../interfaces/IUnit';
import { Celcius } from './Celcius';
import { Delisle } from './Delisle';
import { Fahrenheit } from './Fahrenheit';
import { Kelvin } from './Kelvin';
import { Newton } from './Newton';
import { Rankine } from './Rankine';
import { Romer } from './Romer';
import Temperature from './Temperature';
declare class Reamur extends Temperature implements IBaseTemperature {
    unit: IUnit;
    constructor(value: number);
    static unit: {
        name: string;
        code: string;
    };
    toCelcius: () => Celcius;
    toDelisle: () => Delisle;
    toFahrenheit: () => Fahrenheit;
    toKelvin: () => Kelvin;
    toNewton: () => Newton;
    toRankine: () => Rankine;
    toReamur: () => this;
    toRomer: () => Romer;
}
export { Reamur };
