import type { Service } from 'homebridge'; import type { GoveePlatform } from '../platform.js'; import type { GoveePlatformAccessoryWithControl, ExternalUpdateParams } from '../types.js'; import { GoveeDeviceBase } from './base.js'; /** * Contact sensor device handler. * Currently only logs scene changes (contact state not yet implemented). */ export declare class SensorContactDevice extends GoveeDeviceBase { private _service; constructor(platform: GoveePlatform, accessory: GoveePlatformAccessoryWithControl); get service(): Service; init(): void; externalUpdate(params: ExternalUpdateParams): void; } export default SensorContactDevice;