import { LightingRole } from '../spaces.constants'; export declare class SetLightingRoleDto { deviceId: string; channelId: string; role: LightingRole; priority?: number; } export declare class ReqSetLightingRoleDto { data: SetLightingRoleDto; } export declare class BulkSetLightingRolesDto { roles: SetLightingRoleDto[]; } export declare class ReqBulkSetLightingRolesDto { data: BulkSetLightingRolesDto; }