import type { API, Characteristic, DynamicPlatformPlugin, Logging, PlatformAccessory, PlatformConfig, Service } from 'homebridge'; /** * HomebridgePlatform * This class is the main constructor for your plugin, this is where you should * parse the user config and discover/register accessories with Homebridge. */ export declare class PhilipsAmbilightTVPlatform implements DynamicPlatformPlugin { readonly log: Logging; readonly config: PlatformConfig; readonly api: API; readonly Service: typeof Service; readonly Characteristic: typeof Characteristic; constructor(log: Logging, config: PlatformConfig, api: API); /** * Called when Homebridge restores cached accessories from disk at startup. * TV accessories are published as external accessories (own HAP server), * so we unregister any stale cached platform accessories here. */ configureAccessory(accessory: PlatformAccessory): void; private validateDeviceConfig; discoverDevices(): void; }