/** * */ import { BuildingShort } from '@n3/ng-api-common'; import { Capacity } from '@n3/ng-api-common'; import { Address } from '@n3/ng-api-common'; import { ClassifierShort } from '@n3/ng-api-common'; import { Room } from './room.model'; import { PlaceEquipment } from './placeEquipment.model'; export declare class Building extends BuildingShort { _isEmpty: boolean; capacity: Capacity; address: Address; type: ClassifierShort; terrain: ClassifierShort; rooms: Room[]; equipment: PlaceEquipment[]; constructor(json?: any); }