import React from 'react'; import { BoxProps } from '../Box'; interface HoverAddUnderLineProps extends BoxProps { lineColor?: string; lineSx?: BoxProps['sx']; hoverSx?: BoxProps['sx']; } declare const HoverAddUnderLine: React.ForwardRefExoticComponent & React.RefAttributes>; export default HoverAddUnderLine;