import { ElementType } from 'react'; import { CNavLinkProps } from './CNavLink'; import { PolymorphicRefForwardingComponent } from '../../helpers'; export interface CNavItemProps extends Omit { /** * Component used for the root node. Either a string to use a HTML element or a component. * * @since 5.0.0 */ as?: ElementType; } export declare const CNavItem: PolymorphicRefForwardingComponent<'li', CNavItemProps>;