import { Component } from "react"; export interface IInsightListItemProps { isLoading?: boolean; isLocked?: boolean; isSelected?: boolean; title?: string; updated?: string; type?: string; width?: number; onClick?: () => void; onDelete?: () => void; } export declare class InsightListItem extends Component { private shortenedTextRef; render(): JSX.Element; componentDidUpdate(prevProps: any): void; handleClickDelete: (e: any) => void; private renderLock; private renderUpdatedDateTime; private renderActions; }