import { ReactNode } from 'react'; type TreeProps = { className?: string; children: ReactNode; }; declare const TreeRoot: ({ className, children }: TreeProps) => import("react/jsx-runtime").JSX.Element; export { TreeRoot }; export type { TreeProps }; //# sourceMappingURL=root.d.ts.map