import React from 'react'; interface NavbarItemProps { label: string; href?: string; to?: string; active?: boolean; } declare const NavbarItem: React.FC; export default NavbarItem;