import { FC } from "react"; import "./styles/LevelDisplay.css"; type Props = { label: string; bgColor: string; color: string; }; declare const LevelDisplay: FC; export default LevelDisplay;