/// import { TypographyProps } from "@material-ui/core"; declare type TreeNodeTitleProps = { editMode?: false; label: string; } & TypographyProps; export declare const TreeNodeTitle: ({ label, ...rest }: TreeNodeTitleProps) => JSX.Element; export {};