import type { Service } from 'homebridge'; import type { GoveePlatform } from '../platform.js'; import type { GoveePlatformAccessoryWithControl, ExternalUpdateParams } from '../types.js'; import { GoveeDeviceBase } from './base.js'; /** * Template device handler for unknown/unsupported models. * Logs all commands for debugging and development. */ export declare class TemplateDevice extends GoveeDeviceBase { constructor(platform: GoveePlatform, accessory: GoveePlatformAccessoryWithControl); get service(): Service | undefined; init(): void; externalUpdate(params: ExternalUpdateParams): void; } export default TemplateDevice;