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