dipal-x-tree/internals/TreeViewProvider/TreeViewProvider.d.ts
2024-06-21 19:49:13 +03:00

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;