/** * 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 { TypeDataGridProps, TypeComputedProps } from '../types'; import { MutableRefObject } from 'react'; declare const useActiveIndex: (props: TypeDataGridProps, computedProps: TypeComputedProps, computedPropsRef: MutableRefObject) => { computedActiveIndex: number; getActiveItem: () => any; getFirstVisibleIndex: () => number; setActiveIndex: (activeIndex: number) => void; incrementActiveIndex: (activeIndex: number) => void; computedLastActiveIndex: number | null; doSetLastActiveIndex: (lastActiveIndex: number | null) => void; }; export default useActiveIndex;