import type { CharacteristicValue, PlatformAccessory } from 'homebridge';
import { Lares4OutputStatus } from 'lares4-ts';
import type { Lares4HomebridgePlatform } from './Lares4HomebridgePlatform.js';
export declare class Lares4PlatformLight {
    private readonly platform;
    private readonly accessory;
    private service;
    constructor(platform: Lares4HomebridgePlatform, accessory: PlatformAccessory);
    setStatus(accessoryStatus: Lares4OutputStatus): void;
    setOn(value: CharacteristicValue): void;
    getOn(): CharacteristicValue;
    setLevel(value: CharacteristicValue): void;
}
