///
import type { NestedSpecificDeviceDetailsProps } from '../../../../lib/seam/components/DeviceDetails/DeviceDetails.js';
import type { ThermostatDevice } from '../../../../lib/seam/thermostats/thermostat-device.js';
interface ThermostatDeviceDetailsProps extends NestedSpecificDeviceDetailsProps {
device: ThermostatDevice;
onEditName?: (newName: string) => void | Promise;
}
export declare function ThermostatDeviceDetails({ device, disableResourceIds, disableConnectedAccountInformation, onBack, className, onEditName, }: ThermostatDeviceDetailsProps): JSX.Element | null;
export {};