import React from 'react';
export interface IVeltCommentDialogSuggestionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
}
declare const VeltCommentDialogSuggestion: React.FC<IVeltCommentDialogSuggestionProps>;
export default VeltCommentDialogSuggestion;
