import * as React from 'react'; import { PropsWithChildren } from 'react'; interface IItemProps { id?: string; isMenuDrop?: boolean; expanded?: boolean; expandable?: boolean; onClick?: (event: React.MouseEvent) => void; href?: string; target?: string; } export declare const NavbarNavMenuItem: (props: PropsWithChildren) => JSX.Element; export {};