import React from 'react'; export interface IVeltCommentDialogProps extends React.DetailedHTMLProps, 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; export default VeltCommentDialog;