import * as React from "react"; import { Bulma } from "./../../bulma"; export interface NavItem extends Bulma.Tag, Bulma.Render, Bulma.Active, React.HTMLProps { isTab?: boolean; isBrand?: boolean; } export declare function NavItem({ tag, render, ...props }: NavItem): any; declare const HOC: React.StatelessComponent & React.HTMLProps & Bulma.Helpers>; export default HOC;