import { default as React } from 'react'; type NavItemType = "default" | "expandable" | "button"; interface NavItemProps { icon?: React.ReactNode; label: string; href?: string; isActive?: boolean; type?: NavItemType; isOpen?: boolean; onToggle?: () => void; onClick?: () => void; isSmall?: boolean; } declare const NavItem: ({ icon, label, href, isActive, type, isOpen, onToggle, onClick, isSmall, }: NavItemProps) => import("react/jsx-runtime").JSX.Element; export default NavItem;