import React from "react";
export interface NavItemProps {
    label?: string;
    href?: string;
}
export declare const NavItem: React.FC<NavItemProps>;
