import { FC } from 'react'; declare type Props = { text: string; floorId: number; onFloorChanged: (floorId: number) => void; closeModal: () => void; }; declare const Row: FC; export default Row;