@mui/x-tree-view
Version:
The community edition of the MUI X Tree View components.
8 lines • 392 B
TypeScript
import * as React from 'react';
import { TreeViewAnyStore } from "../models/index.js";
import { TreeViewContextValue } from "./TreeViewProvider.types.js";
/**
* @ignore - internal component.
*/
export declare const TreeViewContext: React.Context<TreeViewContextValue<any> | null>;
export declare const useTreeViewContext: <TStore extends TreeViewAnyStore>() => TreeViewContextValue<TStore>;