import { DetailedHTMLProps, HTMLAttributes, ReactNode } from 'react'; export interface TreeProps extends Omit, HTMLDivElement>, "dir"> { dir?: "ltr" | "rtl"; label?: ReactNode; } /** * A `Tree` wraps one or multiple `Branch` and/or `Leaf` components. * It provides labeling, tab indexing, and keyboard navigation by default. * * @example leaf one leaf two leaf three * * @example one Branch Two (div) } > one * * @example one Branch Two (div) } > two three four * * @see https://design.avayacloud.com/components/web/treeview-web * @see https://neo-react-library-storybook.netlify.app/?path=/story/components-tree */ export declare const Tree: { ({ "aria-describedby": describedby, "aria-label": arialabel, children, className, dir, label, ...rest }: TreeProps): import("react/jsx-runtime").JSX.Element; displayName: string; };