/// <reference types="react" />
export declare enum TabKey {
    colors = 0,
    config = 1,
    token = 2,
    three = 3
}
export interface INavBar {
    logo?: string;
    logoHref?: string;
    setTabKey: (v: any) => void;
    tabKey: TabKey;
    title?: string;
}
declare const NavBar: import("react").NamedExoticComponent<INavBar>;
export default NavBar;
