import { DataColumnProps, DataRowProps, DataTableSelectedCellData } from '@epam/uui-core'; import { DataTableSelectionRange } from '../types'; export declare const getCell: (rowIndex: number, columnIndex: number, rowsByIndex: Map>, columns: DataColumnProps[]) => { column: DataColumnProps; row: DataRowProps; }; export declare const getStartCell: (selectionRange: DataTableSelectionRange | null, rowsByIndex: Map>, columns: DataColumnProps[]) => DataTableSelectedCellData | null; export declare const getNormalizedLimits: (startIndex: number, endIndex: number) => number[]; export declare const getCellPosition: (row: number, column: number, selectionRange: DataTableSelectionRange) => { isLeft: boolean; isRight: boolean; isTop: boolean; isBottom: boolean; isSelected: boolean; isStartCell: boolean; }; //# sourceMappingURL=helpers.d.ts.map