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