import { BaseEntity } from '../../../common/entities/base.entity'; import { ChannelEntity, DeviceEntity } from '../../devices/entities/devices.entity'; import { LightingRole } from '../spaces.constants'; import { SpaceEntity } from './space.entity'; export declare class SpaceLightingRoleEntity extends BaseEntity { spaceId: string; space: SpaceEntity; deviceId: string; device: DeviceEntity; channelId: string; channel: ChannelEntity; role: LightingRole; priority: number; }