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