import { type ComponentProps, type ElementType } from "react"; import type { ThemingProps } from "../../types"; export interface NavbarBrandTheme { base: string; } export interface NavbarBrandProps extends ComponentProps<"a">, ThemingProps { as?: ElementType; href?: string; } export declare const NavbarBrand: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;