import { RingDevice } from '../api';
import { RingPlatformConfig } from './config';
import { BaseDeviceAccessory } from './base-device-accessory';
import { Logging, PlatformAccessory } from 'homebridge';
export declare class Beam extends BaseDeviceAccessory {
    readonly device: RingDevice;
    readonly accessory: PlatformAccessory;
    readonly logger: Logging;
    readonly config: RingPlatformConfig;
    isLightGroup: boolean;
    groupId: string | undefined;
    constructor(device: RingDevice, accessory: PlatformAccessory, logger: Logging, config: RingPlatformConfig);
    setOnState(on: boolean): void | Promise<any>;
    setLevelState(level: number): Promise<void>;
}
