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