import React from 'react'; import { MMELComment } from '../../serialize/interface/supportinterface'; declare const NodeComment: React.FC<{ cids: Set; getCommentById: (id: string) => MMELComment | undefined; addComment: (msg: string, parent?: string) => void; deleteComment: (cid: string, parent?: string) => void; toggleCommentResolved: (cid: string) => void; }>; export default NodeComment; //# sourceMappingURL=NodeComment.d.ts.map