import { Cell, WorksheetItem } from '../../types'; interface Coordinate { columnIndex: number; rowIndex: number; } type Navigate = (offset: Coordinate) => void; export declare const useNavigation: (selectedCell: Cell) => { navigate: Navigate; }; export {}; //# sourceMappingURL=useNavigation.d.ts.map