import { FC } from 'react'; import { FloorProps } from '../../types'; declare type Props = { floors: FloorProps[]; currentFloor: number; onFloorChanged: (floor: number) => void; floorText?: string; allowDropdown?: boolean; showFloors?: boolean; buttonColor?: string; circleColor?: string; }; declare const Floors: FC; export default Floors;