import React from 'react'; export interface TreeViewItemDepthProviderProps { /** The content of the component. */ children?: React.ReactNode; /** The depth of the current level. */ depth?: number; } export declare const TreeViewItemDepthProvider: React.FC; export declare const useTreeViewItemDepth: () => number;