import { Component } from "react"; import "../style/Highlight.css"; import type { T_LTWH } from "../types"; declare type Props = { position: { boundingRect: T_LTWH; rects: Array; }; onClick?: () => void; onMouseOver?: () => void; onMouseOut?: () => void; comment: { emoji: string; text: string; }; isScrolledTo: boolean; }; declare class Highlight extends Component { render(): JSX.Element; } export default Highlight;