import type { Service } from 'homebridge'; import type { GoveePlatform } from '../platform.js'; import type { GoveePlatformAccessoryWithControl, ExternalUpdateParams } from '../types.js'; import { GoveeDeviceBase } from './base.js'; /** * Ice Maker device handler for H7172. * Exposes as a Switch service. */ export declare class IceMakerDevice extends GoveeDeviceBase { private _service; constructor(platform: GoveePlatform, accessory: GoveePlatformAccessoryWithControl); get service(): Service; init(): void; private internalStateUpdate; externalUpdate(params: ExternalUpdateParams): void; private handleStateUpdate; } export default IceMakerDevice;