import type { ThemingProps } from "../../types"; import type { NavbarTheme } from "./Navbar"; export interface NavbarContextValue extends ThemingProps { isOpen?: boolean; setIsOpen: (isOpen: boolean) => void; } export declare const NavbarContext: import("react").Context; export declare function useNavbarContext(): NavbarContextValue;