import { type ComponentProps, type FC } from "react"; import type { ThemingProps } from "../../types"; export interface NavbarToggleThem { base: string; icon: string; title: string; } export interface NavbarToggleProps extends ComponentProps<"button">, ThemingProps { barIcon?: FC>; } export declare const NavbarToggle: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;