import type { Service } from 'homebridge'; import type { GoveePlatform } from '../platform.js'; import type { GoveePlatformAccessoryWithControl, ExternalUpdateParams } from '../types.js'; import { GoveeDeviceBase } from './base.js'; /** * Valve device handler. * Exposes as a Valve service with irrigation type and timer support. */ export declare class ValveDevice extends GoveeDeviceBase { private _service; private updateTimeout; private timer?; constructor(platform: GoveePlatform, accessory: GoveePlatformAccessoryWithControl); get service(): Service; init(): void; private internalStateUpdate; externalUpdate(params: ExternalUpdateParams): void; destroy(): void; } export default ValveDevice;