import * as React from 'react'; import { UseTreeViewKeyboardNavigationParameter } from './useTreeViewKeyboardNavigation.types'; import { EventHandlers } from '../../../utils/types'; export interface UseTreeViewKeyboardNavigationInstance { mapFirstChar: (itemId: string, firstChar: string) => void; } export declare const useTreeViewKeyboardNavigation: (props: UseTreeViewKeyboardNavigationParameter) => { mapFirstChar: (nodeId: string, firstChar: string) => () => void; createHandleKeyDown: (otherHandlers: EventHandlers) => (event: React.KeyboardEvent) => void; };