import { ComponentPropsWithoutRef } from 'react'; export interface NavigationItemProps extends ComponentPropsWithoutRef<'li'> { /** * Provide the content for an item */ children?: React.ReactNode; /** * Specify URL to make an item a link */ href?: string; /** * Specify if an item is selected */ selected?: boolean; /** * Specify if an item is disabled */ disabled?: boolean; /** * Specify an icon for an item */ icon?: React.ReactNode; } declare function __NavigationItem(props: NavigationItemProps): import("react/jsx-runtime").JSX.Element; export declare const _NavigationItem: import('react').MemoExoticComponent; export default _NavigationItem;