import React from 'react'; import { PureComponent } from '../component'; import { ContentProps } from './Props'; declare class Content extends PureComponent> { constructor(props: ContentProps); componentDidMount(): void; componentWillUnmount(): void; handleNodeClick(): void; handleUpdate(): void; handleNodeExpand(): void; handleIndicatorClick(): void; renderNode(): React.ReactNode; renderIndicator(): JSX.Element | null; render(): JSX.Element; } export default Content;