import { Characteristic, PlatformAccessory } from 'homebridge';
import { Platform } from '../platform';
import { EventEmitter } from 'stream';
export default class ACSpeed {
    private readonly platform;
    private readonly accessory;
    private readonly activeChar;
    private readonly service;
    private readonly speedLevels;
    private readonly fanActiveChar;
    private readonly fanSpeedChar;
    private readonly getStatus;
    private readonly sendData;
    constructor(platform: Platform, accessory: PlatformAccessory, activeChar: Characteristic, eventEmitter: EventEmitter, event: string);
    private onACAction;
    private handleOnGet;
    private handleOnSet;
    private handleRotationSpeedGet;
    private handleRotationSpeedSet;
}
//# sourceMappingURL=ACSpeed.d.ts.map