import React from 'react';
export interface IVeltCommentDialogThreadsProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    commentDialogSelected?: boolean;
}
declare const VeltCommentDialogThreads: React.FC<IVeltCommentDialogThreadsProps>;
export default VeltCommentDialogThreads;
