import { KeyNavigationDirection } from '../Droppable/types/model'; export declare const useDraggableKeyNavigation: (onKeyNavSuccess: () => void, origin: TOrigin, onKeyNav?: (direction: KeyNavigationDirection, origin: TOrigin, key?: keyof T) => boolean) => { handleKeyDown: (filterKey?: keyof T) => (event: React.KeyboardEvent) => void; };