import React from 'react';
export interface IVeltCommentSidebarV2ListItemProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotation?: any;
    annotationId?: string;
    showLine?: boolean;
    defaultCondition?: boolean;
}
declare const VeltCommentSidebarV2ListItem: React.FC<IVeltCommentSidebarV2ListItemProps>;
export default VeltCommentSidebarV2ListItem;
