/** Setpoint temperature for a thermostat. */
export declare class ThermostatSetpoint {
    /** A string to uniquely identify a thermostat.  */
    name?: string;
    /** The desired temperature (in °C) to be maintained by the thermostat. */
    setpoint?: number;
}
