import { CommentAnnotation } from '@veltdev/types';
import React from 'react';
export interface IVeltCommentThreadProps {
    annotationId?: string;
    annotation?: CommentAnnotation;
    onCommentClick?: Function;
    darkMode?: boolean;
    variant?: string;
    dialogVariant?: string;
    shadowDom?: boolean;
    fullExpanded?: boolean;
}
declare const VeltCommentThread: React.FC<IVeltCommentThreadProps>;
export default VeltCommentThread;
