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