import { ReactElement, ReactNode } from 'react'; import { LeafProps } from '..'; export interface BranchProps { actions?: ReactNode; children: ReactElement | ReactElement[]; defaultExpanded?: boolean; disabled?: boolean; title: ReactNode; } /** * A `Branch` can be a child of a `Tree` or itself. * * @see https://design.avayacloud.com/components/web/treeview-web * @see https://neo-react-library-storybook.netlify.app/?path=/story/components-tree */ export declare const Branch: { ({ actions, children, defaultExpanded, disabled, title, }: BranchProps): import("react/jsx-runtime").JSX.Element; displayName: string; };