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