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