/// import './Level.css'; export interface LevelProps { 'aria-label'?: string; 'aria-labelledby'?: string; className?: string; level: string; small?: boolean; muted?: boolean; } export default function Level(props: LevelProps): JSX.Element;