import { AccessoryPlugin, CharacteristicValue, Service, Nullable } from 'homebridge'; import { SmartHomeNGPlatform } from '../platform'; export declare class Switch implements AccessoryPlugin { private readonly platform; private readonly accessory; private readonly deviceService; private readonly informationService; name: string; private switchOn; constructor(platform: SmartHomeNGPlatform, accessory: any); identify(): void; getServices(): Service[]; getOn(): Nullable; setOn(value: CharacteristicValue): void; shngCallback(value: unknown): void; } //# sourceMappingURL=Switch.d.ts.map