import * as React from 'react'; export declare const TreeViewChildrenItemContext: React.Context; interface TreeViewChildrenItemProviderProps { itemId: string | null; idAttribute: string | null; children: React.ReactNode; } export declare function TreeViewChildrenItemProvider(props: TreeViewChildrenItemProviderProps): import("react/jsx-runtime").JSX.Element; export declare namespace TreeViewChildrenItemProvider { var propTypes: any; } interface TreeViewChildrenItemContextValue { registerChild: (idAttribute: string, itemId: string) => void; unregisterChild: (idAttribute: string) => void; parentId: string | null; } export {};