import './CommentSection.css'; import React from 'react'; interface CommentSectionProps { overlayStyle?: object; logIn: { loginLink?: string | (() => void); signUpLink?: string | (() => void); onLogin?: string | (() => void); onSignUp?: string | (() => void); }; hrStyle?: object; titleStyle?: object; customNoComment?: Function; showTimestamp?: boolean; } declare const CommentSection: ({ overlayStyle, logIn, hrStyle, titleStyle, customNoComment, showTimestamp }: CommentSectionProps) => React.JSX.Element; export default CommentSection;