import { Categories } from 'homebridge';
import { LightingZoneConfig } from '../config';
import { IDevice, ConfigTypes } from './iDevice';
export declare class LightingZoneDevice implements IDevice {
    readonly deviceName: string;
    readonly deviceType: string;
    readonly deviceTypeNumber: number;
    readonly category: Categories | undefined;
    readonly data: ConfigTypes;
    static readonly type = "Lighting";
    constructor(config: LightingZoneConfig, name: string);
}
//# sourceMappingURL=lightingZoneDevice.d.ts.map