import type { ComponentProps, FC, PropsWithChildren } from 'react'; import { DeepPartial } from '..'; export interface FlowbiteNavbarBrandTheme { base: string; } export interface NavbarBrandProps extends PropsWithChildren> { theme?: DeepPartial; } export declare const NavbarBrand: FC;