import React from 'react'; import { SxProps, Theme } from '@mui/material'; export interface TreeItem { id: string; label: string; children?: TreeItem[]; } export interface TreeViewProps { id: string; data: TreeItem[]; onSelect?: (node: any) => void; onCreate?: (node: any) => void; sx?: SxProps; } export declare const HyperTree: React.FC;