import '@uiw/react-markdown-preview/markdown.css'; import '@uiw/react-md-editor/markdown-editor.css'; import { User } from '../../../configs/types/User'; import { Comment } from '../types/Comment'; import './style.scss'; type Props = { uid: string; mode: 'lexicon' | 'corpus' | 'parser'; users: User[]; references: Record; keywords?: Record; comment?: Comment; reply?: Comment; onClose: () => void; onChange: (r: Comment) => void; }; export default function CommentAdd({ uid, mode, users, references, keywords, comment, reply, onClose, onChange, }: Props): import("react").JSX.Element; export {};