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;