import { ComponentType } from 'react'; export interface Props { color: string; className?: string; onMouseEnter: () => void; onMouseLeave: () => void; } declare function withHoverColor(BaseComponent: ComponentType): (props: { hoverColor?: string; color?: string; className?: string; }) => JSX.Element; export default withHoverColor;