import { FunctionComponent, HTMLProps, ReactNode } from 'react';
export interface NavItemProps extends HTMLProps {
children?: ReactNode | string;
className?: string;
to?: string;
isActive?: boolean;
isSeparated?: boolean;
groupId?: string | number;
itemId?: string | number;
}
declare const NavItem: FunctionComponent;
export default NavItem;