import type React from 'react'; import type { MutableRefObject, RefObject } from 'react'; import type { DSLeftNavigationT } from './react-desc-prop-types.js'; export type ContextProps = { 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: MutableRefObject>>; leftNavProps: DSLeftNavigationT.InternalProps; expandedForAnimation: boolean; }; export declare const defaultContext: ContextProps; export declare const LeftNavContext: React.Context; export default LeftNavContext;