import React from 'react'; interface NavItemProps extends React.HTMLAttributes { children: React.ReactNode; active: boolean; 'aria-current'?: 'page' | 'step' | 'location' | true | false; } declare const NavItem: { ({ children, active, "aria-current": ariaCurrent, ...other }: NavItemProps): React.JSX.Element; displayName: string; }; export default NavItem;