/**
 * @packageDocumentation
 * @module Utility
 */
/**
 * @private
 * @internal
 */
export declare const SupportedTemperatures: {
    /**
     * Celsius
     */
    readonly CELSIUS: "celsius";
    /**
     * Fahrenheit
     */
    readonly FAHRENHEIT: "fahrenheit";
    /**
     * Kelvin
     */
    readonly KELVIN: "kelvin";
    /**
     * Rankine
     */
    readonly RANKINE: "rankine";
};
/**
 * @private
 * @internal
 */
export declare type SupportedTemperatures = typeof SupportedTemperatures[keyof typeof SupportedTemperatures];
/**
 * Available supported values for conversion with the [[temperature]] operator
 */
export declare enum Temperatures {
    /**
     * Celsius
     */
    CELSIUS = "celsius",
    /**
     * Fahrenheit
     */
    FAHRENHEIT = "fahrenheit",
    /**
     * Kelvin
     */
    KELVIN = "kelvin",
    /**
     * Rankine
     */
    RANKINE = "rankine"
}
