import '@uiw/react-markdown-preview/markdown.css'; import { Comment } from '../types/Comment'; import './styles.scss'; type Props = { comment: Comment; hasEditAccess?: boolean; onRemove: () => void; onUpdate: (c: Comment) => void; onEdit: () => void; onReply: () => void; }; export default function CommentInfo({ comment, hasEditAccess, onRemove, onUpdate, onEdit, onReply, }: Props): import("react").JSX.Element; export {};