import React from 'react'; import { BoxProps } from '../internals/Box'; import type { IconProps } from '@rsuite/icons/Icon'; import type { HTMLPropsWithoutSelect } from '../internals/types'; export interface NavbarItemProps extends BoxProps, HTMLPropsWithoutSelect { /** Activation status */ active?: boolean; /** Disabled status */ disabled?: boolean; /** Sets the icon for the component */ icon?: React.ReactElement; /** The value of the current option */ eventKey?: T; /** Providing a `href` will render an `` element */ href?: string; /** Select the callback function that the event triggers. */ onSelect?: (eventKey: T | undefined, event: React.SyntheticEvent) => void; } /** * @private */ declare const NavbarItem: import("../internals/types").InternalRefForwardingComponent<"a", NavbarItemProps, never> & Record; export default NavbarItem;