import type { CharacteristicValue, PlatformAccessory } from 'homebridge';
import { Lares4SensorStatus } from 'lares4-ts';
import type { Lares4HomebridgePlatform } from './Lares4HomebridgePlatform.js';
export declare class Lares4PlatformLightSensor {
    private readonly platform;
    private readonly accessory;
    private service;
    constructor(platform: Lares4HomebridgePlatform, accessory: PlatformAccessory);
    setStatus(accessoryStatus: Lares4SensorStatus): void;
    getCurrentAmbientLightLevel(): CharacteristicValue;
}
