/** * 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. */ declare const dropIndexValidation: ({ data, count, dragIndex, dropIndex, isRowReorderValid, selectedGroup, selectedParent, nodePathSeparator, groupPathSeparator, allowRowReorderBetweenGroups, computedGroupBy, computedTreeEnabled, generateIdFromPath, enableTreeRowReorderParentChange, }: { data: any[]; count: number; dragIndex: number; dropIndex: number; isRowReorderValid: Function; selectedGroup: string[]; selectedParent?: string | undefined; nodePathSeparator?: string | undefined; groupPathSeparator?: string | undefined; allowRowReorderBetweenGroups: boolean; computedGroupBy?: string[] | undefined; computedTreeEnabled?: boolean | undefined; generateIdFromPath?: boolean | undefined; enableTreeRowReorderParentChange?: boolean | undefined; }) => any; export default dropIndexValidation;