import type { ComponentProps, ElementType, FC, PropsWithChildren } from "react"; export interface KeepNavbarBrandTheme { base: string; } export interface NavbarBrandProps extends PropsWithChildren> { as?: ElementType; href?: string; } export declare const NavbarBrand: FC;