import React from 'react';
export interface IVeltCommentDialogCustomAnnotationDropdownTriggerListItemProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    chip?: any;
    itemId?: string;
    index?: number | string;
}
declare const VeltCommentDialogCustomAnnotationDropdownTriggerListItem: React.FC<IVeltCommentDialogCustomAnnotationDropdownTriggerListItemProps>;
export default VeltCommentDialogCustomAnnotationDropdownTriggerListItem;
