import { SVGProps } from 'react'; export type TooltipCursorProps = SVGProps & { dataFeature?: string; }; /** * Custom component to allow data-x props * @param props */ declare function TooltipCursor({ x, y, width, height, dataFeature }: TooltipCursorProps): JSX.Element; export default TooltipCursor;