import type { ComponentProps, FC, PropsWithChildren } from 'react'; import { DeepPartial } from '..'; import { FlowbiteBoolean } from '../Flowbite/FlowbiteTheme'; export interface FlowbiteNavbarLinkTheme { base: string; active: FlowbiteBoolean; disabled: FlowbiteBoolean; } export interface NavbarLinkProps extends PropsWithChildren> { active?: boolean; disabled?: boolean; href?: string; theme?: DeepPartial; } export declare const NavbarLink: FC;