import type { PlatformAccessory, CharacteristicValue, CharacteristicSetCallback } from 'homebridge'; import { PduHomebridgePlatform } from './platform'; /** * Platform Accessory * An instance of this class is created for each accessory your platform registers * Each accessory may expose multiple services of different service types. */ export declare class PduPlatformAccessory { private readonly platform; private readonly accessory; private services; snmpSession: any; snmpGet: any; snmpSet: any; timer: any; constructor(platform: PduHomebridgePlatform, accessory: PlatformAccessory); setOn(index: number, on: CharacteristicValue, callback: CharacteristicSetCallback): Promise; poll(): Promise; } //# sourceMappingURL=platformAccessory.d.ts.map