import React from 'react';
export interface IVeltMultiThreadCommentDialogProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    multiThreadAnnotationId?: string;
    annotation?: any;
    user?: any;
    commentPinSelected?: boolean;
    commentPinType?: string;
    dialogVariant?: string;
    variant?: string;
    inboxMode?: boolean;
    containerComponentId?: string;
    context?: any;
    readOnly?: boolean;
    defaultCondition?: boolean;
    onSaveComment?: Function;
}
declare const VeltMultiThreadCommentDialog: React.FC<IVeltMultiThreadCommentDialogProps>;
export default VeltMultiThreadCommentDialog;
