UNPKG

mt-flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

9 lines (8 loc) 280 B
/// <reference types="react" /> type NavbarContext = { isOpen?: boolean; setIsOpen: (isOpen: boolean) => void; }; export declare const NavbarContext: import("react").Context<NavbarContext | undefined>; export declare function useNavbarContext(): NavbarContext; export {};