import React from 'react'; import { ReactiveDomReact } from '../utils/layouts'; type Props = { rect: ReactiveDomReact; visible?: boolean; hoverHeightRatio?: number; hoverWidthRatio?: number; activeOpacity?: number; }; type NativeAttrs = Omit, keyof Props>; export type HighlightProps = Props & NativeAttrs; declare const Highlight: React.FC; export default Highlight;