interface FocusedCell { rowId: string | number; columnId: string; } export declare const useTableFocus: () => { focusedCell: FocusedCell | null; handleCellFocus: (rowId: string | number, columnId: string) => void; handleCellBlur: () => void; isCellFocused: (rowId: string | number, columnId: string) => boolean; }; export {}; //# sourceMappingURL=useTableFocus.d.ts.map