import React from "react"; interface ITreeData { [key: string]: any; children?: ITreeData[]; } interface ISearchTreeProps { treeKey: string; searchPlaceholder?: string; treeLabel?: string; isParentSelect?: boolean; data: ITreeData[]; handleHover?: (item: ITreeData | string) => void; callback: (item: ITreeData) => void; handleMouseOver?: (e: any, container: string) => void; handleMouseOut?: (e: any) => void; } declare function SearchTree(props: ISearchTreeProps): React.JSX.Element; export default SearchTree;