import { TemporaryNavigationProps } from "./types"; export interface INavItemProps { navigation: TemporaryNavigationProps; active?: boolean; onClick?: any; activePath: string; LinkElement?: any; linkElementProps?: any; onNavItemClick?: () => void; } declare const NavItem: ({ navigation, activePath, LinkElement, linkElementProps, onNavItemClick, }: INavItemProps) => import("react/jsx-runtime").JSX.Element; export default NavItem;