import { Comment } from '../types/Comment'; import './styles.scss'; type Props = { comments: Comment[]; hasEditAccess: boolean; onRemove: (id: Comment['id']) => void; onUpdate: (comment: Comment) => void; onEdit: (comment: Comment) => void; onReply: (comment: Comment) => void; }; export default function CommentThread({ comments, hasEditAccess, onRemove, onUpdate, onEdit, onReply, }: Props): import("react").JSX.Element; export {};