/// interface ILeafNodeProps { node: any; active: boolean; id: string; filterValue: string; } export default function LeafNode(props: ILeafNodeProps): JSX.Element; export {};