import * as React from 'react'; import { TreeViewSlots, TreeViewSlotsAndSlotProps } from '../components/TreeView/TreeView.types'; export interface TreeViewStyleContextValue { slots: TreeViewSlots; slotProps: TreeViewSlotsAndSlotProps; } /** * @ignore - internal component. */ export declare const TreeViewStyleContext: React.Context; export declare const useTreeViewStyleContext: () => TreeViewStyleContextValue;