import type { Service } from 'homebridge'; import type { GoveePlatform } from '../platform.js'; import type { GoveePlatformAccessoryWithControl, ExternalUpdateParams } from '../types.js'; import { GoveeDeviceBase } from './base.js'; /** * TV device handler. * Exposes as a Television service for audio/box/stick devices. */ export declare class TVDevice extends GoveeDeviceBase { private _service; private updateTimeout; constructor(platform: GoveePlatform, accessory: GoveePlatformAccessoryWithControl); get service(): Service; init(): void; private internalStateUpdate; externalUpdate(params: ExternalUpdateParams): void; } export default TVDevice;