/// import { IconProps } from './Icon'; interface Props extends IconProps { severity: string | null | undefined; } export default function SeverityIcon({ severity, ...iconProps }: Props): JSX.Element | null; export {};