import type { AsChildTypes } from "../types"; import { type PropsOf, type Signal } from "@qwik.dev/core"; import { type HoverGroup } from "../popover/hooks/use-popover-hover"; export type NavbarContext = { hover: boolean; hoverGroup: HoverGroup; hoverClickGrace: number; localId: string; rootRef: Signal; closeAllCounter: Signal; }; export declare const navbarContextId: import("@qwik.dev/core").ContextId; type PublicNavbarRootProps = PropsOf<"nav"> & { /** Whether items open when hovered */ hover?: boolean; /** Time before a hovered item opens */ delay?: number; /** Time before a hovered item opens when another item is already open */ switchDelay?: number; /** Time after hover-open during which trigger clicks are ignored */ hoverClickGrace?: number; }; export declare const NavbarRoot: import("@qwik.dev/core").Component; export {};