import React from "react"; type Props = { id: number; count: number; }; declare const CommentCount: ({ id, count }: Props) => React.JSX.Element; export default CommentCount;