import * as React from 'react'; import { ID } from '../../index.data'; interface Props { rowId: ID; i: number; } declare class RowIndicator extends React.Component { constructor(props: Props); shouldComponentUpdate(nextProps: Props): boolean; render(): JSX.Element | null; } export default RowIndicator;