import type CellCoords from '../../3rdparty/walkontable/src/cell/coords'; /** * Get direction between positions and cords of selections difference (drag area). * * @param {Array} startSelection The coordinates where the selection starts. * @param {Array} endSelection The coordinates where the selection ends. * @param {Function} cellCoordsFactory The function factory for CellCoords objects. * @returns {{direction: string, start: CellCoords, end: CellCoords}} */ export declare function getDragDirectionAndRange(startSelection: number[], endSelection: number[], cellCoordsFactory: (row: number, col: number) => CellCoords): { directionOfDrag: string | undefined; startOfDragCoords: CellCoords | undefined; endOfDragCoords: CellCoords | undefined; };