import { DetailedHTMLProps, LiHTMLAttributes, ReactNode } from 'react';
export interface LeafProps extends DetailedHTMLProps, HTMLLIElement> {
actions?: ReactNode;
children: ReactNode;
disabled?: boolean;
}
/**
* A `Leaf` can be a child of a `Tree` or a `Branch` component.
* It is meant to be a leaf/end node in the tree hierarchy.
*
* @see https://design.avayacloud.com/components/web/treeview-web
* @see https://neo-react-library-storybook.netlify.app/?path=/story/components-tree
*/
export declare const Leaf: {
({ actions, children, className, disabled, ...rest }: LeafProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};