import type { Buffer } from 'node:buffer'; import type { outdoorMeterServiceData } from '../types/bledevicestatus.js'; import type { NobleTypes } from '../types/types.js'; import { SwitchbotDevice } from '../device.js'; /** * Class representing a WoIOSensorTH device. * @see https://github.com/OpenWonderLabs/SwitchBotAPI-BLE/blob/latest/devicetypes/meter.md#outdoor-temperaturehumidity-sensor */ export declare class WoIOSensorTH extends SwitchbotDevice { /** * Parses the service data for WoIOSensorTH. * @param {Buffer} serviceData - The service data buffer. * @param {Buffer} manufacturerData - The manufacturer data buffer. * @param {Function} emitLog - The function to emit log messages. * @returns {Promise} - Parsed service data or null if invalid. */ static parseServiceData(serviceData: Buffer, manufacturerData: Buffer, emitLog: (level: string, message: string) => void): Promise; constructor(peripheral: NobleTypes['peripheral'], noble: NobleTypes['noble']); } //# sourceMappingURL=woiosensorth.d.ts.map