import type { Service } from 'homebridge'; import type { GoveePlatform } from '../platform.js'; import type { GoveePlatformAccessoryWithControl, ExternalUpdateParams } from '../types.js'; import { GoveeDeviceBase } from './base.js'; /** * Light Switch device handler. * Exposes as a Switch service (removes Lightbulb service if present). */ export declare class LightSwitchDevice extends GoveeDeviceBase { private _service; constructor(platform: GoveePlatform, accessory: GoveePlatformAccessoryWithControl); get service(): Service; init(): void; private internalStateUpdate; externalUpdate(params: ExternalUpdateParams): void; } export default LightSwitchDevice;