import { FC } from 'react'; import { FloorProps } from '../../../types'; declare type Props = { floors: FloorProps[]; expanded: boolean; closeModal: () => void; onFloorChanged: (floorId: number) => void; floorText?: string; }; declare const FloorModal: FC; export default FloorModal;