import { BrightnessDelta, LightingIntentType, LightingMode, LightingRole } from '../spaces.constants'; export declare class LightingIntentDto { type: LightingIntentType; mode?: LightingMode; delta?: BrightnessDelta; increase?: boolean; role?: LightingRole; on?: boolean; brightness?: number; color?: string; colorTemperature?: number; white?: number; } export declare class ReqLightingIntentDto { data: LightingIntentDto; }