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;