import type { FC } from 'react'; import type { PostComment } from '../types/social'; interface CommentProps { className?: string; comment: PostComment; } declare const Comment: FC; export default Comment;