import * as React from 'react'; import type { TreeNodeProps } from './types'; import type { SyntheticEvent } from 'react'; export default class TreeNode extends React.Component { treeItemRef: React.RefObject; componentDidMount(): void; componentWillUnmount(): void; onToggle: () => void; onFocus: (e: SyntheticEvent) => void; render(): import("react/jsx-runtime").JSX.Element; }