import * as React from 'react'; declare type IdType = string | number; interface IProps { apiPath: string; tenantId: IdType; onAddComment: (obj: any) => void; userId: IdType; operationBtnExternal?: React.ReactElement | React.ReactElement[]; userAdvanceMode?: boolean; isShowMentionAllBtn?: boolean; isShowMentionBtn?: boolean; isShowEmojyBtn?: boolean; isShowRewardBtn?: boolean; isShowVisible?: boolean; isShowUploadBtn?: boolean; isShowModal?: boolean; getTextRef?: (ref: HTMLTextAreaElement) => void; feedId?: string | number; translation?: any; } declare const CommentorCooperation: React.FunctionComponent; export default CommentorCooperation;