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