import { FunctionComponent } from 'react'; import './styles.css'; interface InternalRoomsProps { floorMap: any; space: any; setSelectedInternalsRooms: (any: any) => void; handleInternalRoomClick: (any: any) => void; getFloorName: (string: any) => string; isColapsable: boolean; } declare const InternalRooms: FunctionComponent; export default InternalRooms;