import React from "react"; import { CommentType } from "./comment-type"; interface ComboFieldProps { comments: Array; }>; title: React.ReactNode | string; maxWidth?: string; dissableCount?: boolean; showMore?: () => void; likeCall?: (e: CommentType) => void; dp?: number; } declare const CommentSection: ({ comments, maxWidth, title, dissableCount, showMore, likeCall, dp, }: ComboFieldProps) => React.JSX.Element; export default CommentSection;