import { TooltipProps } from '@mui/material/Tooltip'; interface ITooltipProps extends TooltipProps { color?: 'dark' | 'light'; placement?: 'top' | 'bottom-end' | 'bottom-start' | 'bottom' | 'left-end' | 'left-start' | 'left' | 'right-end' | 'right-start' | 'right' | 'top-end' | 'top-start'; size?: 'small' | 'medium'; textAlign?: 'start' | 'end' | 'left' | 'right' | 'center' | 'justify' | 'match-parent'; } declare const Tooltip: ({ title, color, placement, size, textAlign, ...otherProps }: ITooltipProps) => import("react/jsx-runtime").JSX.Element; export default Tooltip;