/** * -------------------------------------------------------------------------- * CoreUI PRO react-data-grid active-cell.ts * License (https://coreui.io/pro/license/) * -------------------------------------------------------------------------- */ export interface ActiveCell { rowIndex: number; columnId: string; } export interface ActiveCellContext { columnIds: string[]; rowCount: number; pageStep: number; paginated: boolean; rtl?: boolean; } export interface NavigationResult { cell: ActiveCell; pageDelta?: -1 | 1; } export declare const clampActiveCell: (cell: ActiveCell | null, context: ActiveCellContext) => ActiveCell | null; export declare const resolveNavigation: (key: string, ctrlKey: boolean, current: ActiveCell, context: ActiveCellContext) => NavigationResult | null;