///
import { Post } from '../../model/Post';
import { Thread } from '../../model/Thread';
import { Theme } from '@mui/material/styles/createTheme';
type CommentListItemProps = {
thread: Thread;
post: Post;
level: number;
onReplySuccess: (replyPostId: number, newPost: Post) => void;
openingReply: number;
onShowReplyClick: (post?: Post) => void;
onLikeClick: (post?: Post) => void;
loadingChildren: Set;
onLoadingChildrenClick: (post: Post) => void;
noMorePostSet: Set;
theme: Theme;
};
export default function CommentListItem(props: CommentListItemProps): JSX.Element;
export {};