UNPKG

406 BTypeScriptView Raw
1import React from 'react';
2import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
3export interface NavbarToggleProps extends BsPrefixPropsWithChildren {
4 label?: string;
5 onClick?: React.MouseEventHandler;
6}
7declare type NavbarToggle = BsPrefixRefForwardingComponent<'button', NavbarToggleProps>;
8declare const NavbarToggle: NavbarToggle;
9export default NavbarToggle;