import { FC } from "react"; import { ArrowDirections } from "./types"; interface NvNavbarItemProps { arrowBefore?: boolean; arrowTo?: ArrowDirections; isActive?: boolean; isDropdown?: boolean; isLast?: boolean; noArrow?: boolean; className?: string; children: React.ReactElement | React.ReactElement[]; isDisplayed?: boolean; isNestedDropdown?: boolean; } /** * Functional component representing a navigation bar item with optional dropdown functionality. * * @param isActive Specifies if the item is currently active. * @param isDropdown Specifies if the item has a dropdown functionality. * @param isLast Specifies if the item is the last one in the list. * @param noArrow Specifies if the item should not display an arrow. * @param className Additional CSS class for styling purposes. * @param children The content elements of the navigation bar item. * @param isDisplayed Specifies if the item should be displayed. * @param isNestedDropdown Specifies if the item is a nested dropdown. * @returns The rendered navigation bar item component. */ declare const NvNavbarItem: FC; export default NvNavbarItem;