UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

11 lines (10 loc) 365 B
/// <reference types="react" /> import type { FlowbiteNavbarTheme } from "./Navbar"; type NavbarContext = { theme: FlowbiteNavbarTheme; isOpen?: boolean; setIsOpen: (isOpen: boolean) => void; }; export declare const NavbarContext: import("react").Context<NavbarContext | undefined>; export declare function useNavbarContext(): NavbarContext; export {};