import { Comment } from '../types/Comment'; import './styles.scss'; type Props = { comment: Comment; onClose: () => void; }; export default function CommentDetails({ comment, onClose }: Props): import("react").JSX.Element; export {};