import { type PropsWithChildren } from 'react'; import type { InternalTreeMapNode } from '../types/internal.js'; interface TreeMapDataProviderProps extends PropsWithChildren { data: InternalTreeMapNode; } export declare const TreeMapInternalDataProvider: { (props: TreeMapDataProviderProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; }; export {};