export interface TreeProp { data: Record[]; childrenField?: string; displayField: string; onItemClick?: (item: any) => void; ItemIconComponent?: React.ElementType; ItemActionsComponent?: React.ElementType; expandAll?: boolean; className?: string; } export declare function Tree(props: TreeProp): import("react").JSX.Element;