declare const types: {
    readonly Fahrenheit: "fahrenheit";
    readonly Celsius: "celsius";
    readonly Kelvin: "kelvin";
    readonly Miles: "miles";
    readonly Kilometers: "kilometers";
};
declare type UnitType = keyof typeof types;
export default UnitType;
