import React from 'react';
export interface IVeltCommentTextProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    multiThreadAnnotationId?: string;
}
declare const VeltCommentText: React.FC<IVeltCommentTextProps>;
export default VeltCommentText;
