/** * 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 let dropGroup: string; declare let keyPath: string[]; declare const getDropGroup: ({ ranges, dragBoxRegion, }: { ranges: any[]; dragBoxRegion: any; }) => { dropGroup: string; keyPath: string[]; }; export default getDropGroup;