import { TreeNodeId, TreeNodeProps, TreeSelectableType } from '../../Tree'; interface UseFocusableProps { nodes: Array>; type: TreeSelectableType; defaultSelected?: TreeNodeId[]; } export declare const useFocusable: ({ nodes, type, defaultSelected }: UseFocusableProps) => { focusedNode: string; onFocus: (nodeId: TreeNodeId) => void; }; export {}; //# sourceMappingURL=useFocusable.d.ts.map