import * as React from 'react';
import { TreeViewAnyStore } from "../models/index.mjs";
import { TreeViewContextValue } from "./TreeViewProvider.types.mjs";
/**
 * @ignore - internal component.
 */
export declare const TreeViewContext: React.Context<TreeViewContextValue<any> | null>;
export declare const useTreeViewContext: <TStore extends TreeViewAnyStore>() => TreeViewContextValue<TStore>;