UNPKG

@mui/x-tree-view

Version:

The community edition of the MUI X Tree View components.

8 lines 404 B
import * as React from 'react'; import type { TreeViewAnyStore } from "../models/index.mjs"; import type { TreeViewContextValue } from "./TreeViewProvider.types.mjs"; /** * @ignore - internal component. */ export declare const TreeViewContext: React.Context<TreeViewContextValue<any> | null>; export declare const useTreeViewContext: <TStore extends TreeViewAnyStore>() => TreeViewContextValue<TStore>;