import * as React from 'react'; import { Theme } from '@mui/material/styles'; import { SxProps } from '@mui/system'; import { TreeViewClasses } from './treeViewClasses'; import { DefaultTreeViewPluginParameters } from '../internals/plugins/defaultPlugins'; export interface TreeViewPropsBase extends React.HTMLAttributes { /** * The content of the component. */ children?: React.ReactNode; /** * className applied to the root element. */ className?: string; /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; } export interface TreeViewProps extends DefaultTreeViewPluginParameters, TreeViewPropsBase { } export type SingleSelectTreeViewProps = TreeViewProps; export type MultiSelectTreeViewProps = TreeViewProps;