/**
 * @typedef {import('../../../typedef').Comment} Comment
 *
 * @param {Object}  props
 * @param {Comment} props.comment
 * @param {boolean} [props.shouldShowControl]
 * @return {JSX.Element}
 */
export default function CommentItem({ comment, shouldShowControl }: {
    comment: Comment;
    shouldShowControl?: boolean;
}): JSX.Element;
export type Comment = import('../../../typedef').Comment;
//# sourceMappingURL=comment-item.d.ts.map