import type { Service } from 'homebridge'; import type { GoveePlatform } from '../platform.js'; import type { GoveePlatformAccessoryWithControl, ExternalUpdateParams } from '../types.js'; import { GoveeDeviceBase } from './base.js'; /** * SensorThermo4 device handler for H5198 model. * This is a diagnostic handler that logs all data for debugging. * The H5198 appears to be a new sensor model that requires reverse engineering. */ export declare class SensorThermo4Device extends GoveeDeviceBase { constructor(platform: GoveePlatform, accessory: GoveePlatformAccessoryWithControl); get service(): Service | undefined; init(): void; externalUpdate(params: ExternalUpdateParams): void; } export default SensorThermo4Device;