import React from 'react'; export interface CommentItemProps { prefixCls?: string; style?: any; width: string; data: any; } export default class CommentItem extends React.Component { state: { showMore: boolean; }; static defaultProps: { prefixCls: string; width: string; }; render(): JSX.Element; }