import React from 'react';
export interface IVeltCommentDialogOptionsDropdownContentNotificationProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    enableNotifications?: boolean;
    commentObj?: any | string;
}
declare const VeltCommentDialogOptionsDropdownContentNotification: React.FC<IVeltCommentDialogOptionsDropdownContentNotificationProps>;
export default VeltCommentDialogOptionsDropdownContentNotification;
