import React, { ReactNode } from 'react'; declare function LargeScreenComponentTree(props: ILargeScreenComponentTree): React.JSX.Element; export default LargeScreenComponentTree; export interface ILargeScreenComponentTree { list: IList[]; autoExpandParent?: boolean; expandedKeys?: string[] | number[]; change?: Function; styles?: React.CSSProperties; height?: number; } export interface IList { key: string[]; title: string | ReactNode; type?: string; icon?: string | ReactNode; children?: IList[]; url?: string | ReactNode; componentType?: string; }