import React from 'react';
export interface IVeltCommentDialogThreadCardNameProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    commentObj?: any | string;
    commentId?: number | string;
    commentIndex?: number | string;
}
declare const VeltCommentDialogThreadCardName: React.FC<IVeltCommentDialogThreadCardNameProps>;
export default VeltCommentDialogThreadCardName;
