/// import type { ThermostatDevice } from '../../../lib/seam/thermostats/thermostat-device.js'; interface ThermostatCardProps { device: ThermostatDevice; onEditName?: (newName: string) => void; onTemperatureUnitChange?: (temperatureUnit: 'fahrenheit' | 'celsius') => void; } export declare function ThermostatCard(props: ThermostatCardProps): JSX.Element; export {};