/// import type { FiltersMap } from '@wix/bex-core'; import type { EditableTableState } from '../../state/EditableTable'; import { Focusable } from './types'; interface UseCellFocusAndEditingParams { state: EditableTableState; rowKey: string; columnId: string; cellRef: React.MutableRefObject; editInputRef: React.MutableRefObject; } export declare function useCellFocusAndEditing({ state, rowKey, columnId, cellRef, editInputRef, }: UseCellFocusAndEditingParams): { onKeyDown: (e: React.KeyboardEvent) => void; }; export {}; //# sourceMappingURL=useCellFocusAndEditing.d.ts.map