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