10 lines
416 B
TypeScript
10 lines
416 B
TypeScript
import * as React from 'react';
|
|
import { TreeViewProviderProps } from './TreeViewProvider.types';
|
|
import { TreeViewAnyPluginSignature } from '../models';
|
|
/**
|
|
* Sets up the contexts for the underlying TreeItem components.
|
|
*
|
|
* @ignore - do not document.
|
|
*/
|
|
export declare function TreeViewProvider<TPlugins extends readonly TreeViewAnyPluginSignature[]>(props: TreeViewProviderProps<TPlugins>): React.JSX.Element;
|