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