import React from 'react';
import { StyledProps } from '../common';
import { TdCommentProps } from './type';
export interface CommentProps extends TdCommentProps, StyledProps {
}
declare const Comment: React.ForwardRefExoticComponent<CommentProps & React.RefAttributes<HTMLDivElement>>;
export default Comment;
