import { type HTMLAttributes, type AnchorHTMLAttributes, type ReactNode } from "react"; export interface NavbarProps extends HTMLAttributes { logo?: ReactNode; actions?: ReactNode; transparent?: boolean; } export declare const Navbar: import("react").ForwardRefExoticComponent>; export interface NavbarLinksProps extends HTMLAttributes { } export declare const NavbarLinks: import("react").ForwardRefExoticComponent>; export interface NavbarLinkProps extends AnchorHTMLAttributes { active?: boolean; /** Render as a different element (default: "a"). Accepts Next.js Link etc. */ as?: React.ElementType; } export declare const NavbarLink: import("react").ForwardRefExoticComponent>;