import React from 'react'; import { CommentInstance } from '../../utils/Comments'; declare const CommentEntry: React.FC<{ comment: CommentInstance; addComment: (msg: string, parent?: string) => void; deleteComment: (cid: string, parent?: string) => void; toggleCommentResolved?: (cid: string) => void; parent?: string; }>; export default CommentEntry; //# sourceMappingURL=CommentEntry.d.ts.map