import type { IconProp } from "@fortawesome/fontawesome-svg-core"; import type { PropsFor } from "../../types.js"; export type NavGroupProps = PropsFor<"div", { /** Text or JSX content for the group toggle button */ name?: Exclude; /** Style the group as active (by default it will be true if a child link or button has an `.active` class) */ active?: boolean; /** Optional font awesome svg icon reference */ icon?: IconProp; /** Set the default opened state (for expanded sidebar and mobile nav) */ defaultExpanded?: boolean; /** Render children even when `` is collapsed. (default `true`) */ eager?: boolean; }>; declare const NavGroup: import("react").ForwardRefExoticComponent>; export default NavGroup;