import { type NavigationListItemProps } from './NavigationListItem.types'; /** * The NavigationListItem component. * It is used inside the NavigationList or NavigationList.Group component. * * If the href prop is provided, the item will be rendered as an anchor element. * If the onClick prop is provided (without href), it will be rendered as a button element. * Otherwise, it will be rendered as a div element and not interactive. */ export declare const NavigationListItem: import("react").ForwardRefExoticComponent>;