import { Comment, LTWHP } from '../types.js'; interface Props { position: { boundingRect: LTWHP; rects: Array; }; onClick?: () => void; onMouseOver?: () => void; onMouseOut?: () => void; comment: Comment; isScrolledTo: boolean; } export declare function Highlight({ position, onClick, onMouseOver, onMouseOut, comment, isScrolledTo, }: Props): import("react/jsx-runtime").JSX.Element; export {};