import { AccessoryPlugin, CharacteristicValue, Service, Nullable } from 'homebridge'; import { SmartHomeNGPlatform } from '../platform'; export declare class Fan implements AccessoryPlugin { private readonly platform; private readonly accessory; private readonly deviceService; private readonly informationService; name: string; private active; private rotationSpeed; constructor(platform: SmartHomeNGPlatform, accessory: any); identify(): void; getServices(): Service[]; getActive(): Nullable; setActive(value: CharacteristicValue): void; getRotationSpeed(): Nullable; setRotationSpeed(value: CharacteristicValue): void; shngActiveCallback(value: unknown): void; shngRotationSpeedCallback(value: unknown): void; } //# sourceMappingURL=Fan.d.ts.map