import React from 'react'; import type { DSLeftNavigationT } from '../react-desc-prop-types.js'; export declare const useLeftNavConfig: (props: DSLeftNavigationT.Props) => { leftNavProps: DSLeftNavigationT.InternalProps; expandedForAnimation: boolean; selectedItem: string | null; setSelectedItem: React.Dispatch>; selectedParent: string | null; setSelectedParent: React.Dispatch>; focusedItem: string | null; setFocusedItem: React.Dispatch>; openedDrilldowns: string[]; setOpenedDrilldowns: React.Dispatch>; visibleItems: string[]; visibleItemsRefs: React.MutableRefObject>>; }; export default useLeftNavConfig;