import type { ComponentProps, FC, PropsWithChildren } from 'react'; import { DeepPartial } from '..'; import { FlowbiteBoolean } from '../Flowbite/FlowbiteTheme'; export interface FlowbiteNavbarCollapseTheme { base: string; list: string; hidden: FlowbiteBoolean; } export interface NavbarCollapseProps extends PropsWithChildren> { theme?: DeepPartial; } export declare const NavbarCollapse: FC;