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