/// import PropTypes from 'prop-types'; interface TooltipInterface { tooltip: string; tooltipBackground: string; tooltipColor: string; tooltipIconColor: string; } declare const Tooltip: { ({ tooltip, tooltipBackground, tooltipColor, tooltipIconColor, }: TooltipInterface): JSX.Element; propTypes: { tooltip: PropTypes.Requireable; tooltipBackground: PropTypes.Requireable; tooltipColor: PropTypes.Requireable; tooltipIconColor: PropTypes.Requireable; }; defaultProps: { tooltip: string; tooltipBackground: string; tooltipColor: string; tooltipIconColor: string; }; }; export default Tooltip;