/** * Copyright © INOVUA TRADING. * * This source code is licensed under the Commercial License found in the * LICENSE file in the root directory of this source tree. */ import { TypeConstrainRegion } from '../../../types'; type DropIndexResultType = { index: number; }; type DragBoxOffset = { top: number; left: number; }; declare const getDropRowIndex: ({ rowHeightManager, dragBoxInitialRegion, dragBoxOffsets, initialDiffTop, scrollTop, dragIndex, dir, }: { rowHeightManager: any; dragBoxInitialRegion: TypeConstrainRegion; dragBoxOffsets: DragBoxOffset; initialDiffTop: number; scrollTop: number; dragIndex: number; dir: number; }) => DropIndexResultType; export default getDropRowIndex;