import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; export interface NavbarToggleProps extends BsPrefixProps, JSX.HTMLAttributes { label?: string; } declare const NavbarToggle: BsPrefixRefForwardingComponent<"button", NavbarToggleProps>; export default NavbarToggle;