import React from 'react';
export interface IVeltCommentDialogProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    commentPinSelected?: boolean;
    fullExpanded?: boolean;
    shadowDom?: boolean;
    placeholder?: string;
    editPlaceholder?: string;
    editCommentPlaceholder?: string;
    editReplyPlaceholder?: string;
    /**
     * Per-dialog override for anonymous email mentions for this annotation context.
     */
    anonymousEmail?: boolean;
}
declare const VeltCommentDialog: React.FC<IVeltCommentDialogProps>;
export default VeltCommentDialog;
