import React from "react";
declare type NavProps = {
    href?: string;
    text: string;
    isActive?: boolean;
    isNewTab?: boolean;
    onClick?: Function;
};
declare const Nav: React.FC<NavProps>;
export default Nav;
