/// import { CSSProperties } from 'react'; export interface CommentMarkerProps { size?: number; color?: string; style?: CSSProperties; } export default function CommentMarker({style, size, color}: CommentMarkerProps): JSX.Element;