import { API, PlatformConfig, Service, Characteristic, Logging, IndependentPlatformPlugin } 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 HiSenseTVPlatform implements IndependentPlatformPlugin { readonly log: Logging; readonly config: PlatformConfig; readonly api: API; readonly Service: typeof Service; readonly Characteristic: typeof Characteristic; constructor(log: Logging, config: PlatformConfig, api: API); discoverDevices(): void; }