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