import './style.scss'; import { Comment } from './types/Comment'; type Props = { uid: string; keywords?: Record; references: Record; onClose: () => void; mode: 'lexicon' | 'corpus' | 'parser'; onChange?: (a: Comment[]) => void; }; export default function Comments({ uid, keywords, references, mode, onClose, onChange, }: Props): import("react").JSX.Element; export {};