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