import { baseDevice } from '../baseDevice'; import { LGThinQHomebridgePlatform } from '../platform'; import { CharacteristicValue, PlatformAccessory } from 'homebridge'; import { Device } from '../lib/Device'; export default class RangeHood extends baseDevice { readonly platform: LGThinQHomebridgePlatform; readonly accessory: PlatformAccessory; protected serviceHood: any; protected serviceLight: any; constructor(platform: LGThinQHomebridgePlatform, accessory: PlatformAccessory); setHoodActive(value: CharacteristicValue): Promise; setHoodRotationSpeed(value: CharacteristicValue): Promise; setLightActive(value: CharacteristicValue): Promise; setLightBrightness(value: CharacteristicValue): Promise; updateAccessoryCharacteristic(device: Device): void; } //# sourceMappingURL=RangeHood.d.ts.map