/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { MutableRefObject } from 'react'; type TypeActiveRowIndicatorProps = { rtl: boolean; rtlOffset: number; getDOMNode: () => HTMLDivElement | null; computedExpandedRows: any; computedExpandedNodes: any; computedRowHeights: any; handle: (handleProps: { setScrollLeft: (scrollLeft: number) => void; } | null) => void; activeIndex: number; width: number; activeRowHeight: number; dataSourceCount: number; activeRowRef: MutableRefObject<{ instance: any; node: HTMLElement; } | null>; activeRowIndicatorClassName?: string; }; declare const ActiveRowIndicator: (props: TypeActiveRowIndicatorProps) => JSX.Element; export default ActiveRowIndicator;