@mui/x-tree-view
Version:
The community edition of the MUI X Tree View components.
9 lines • 405 B
text/typescript
import * as React from 'react';
import type { TreeViewProviderProps } from "./TreeViewProvider.types.mjs";
import type { TreeViewAnyStore } from "../models/index.mjs";
/**
* Sets up the contexts for the underlying Tree Item components.
*
* @ignore - do not document.
*/
export declare function TreeViewProvider<TStore extends TreeViewAnyStore>(props: TreeViewProviderProps<TStore>): React.JSX.Element;