/// import { TooltipProps } from '@mui/material'; interface Props { title: TooltipProps['title']; outlined?: boolean; } export default function InfoTooltipWithIcon({ title, outlined, }: Props): JSX.Element; export {};