import { type ComponentProps } from "react"; import type { FlowbiteBoolean, ThemingProps } from "../../types"; export interface NavbarCollapseTheme { base: string; list: string; hidden: FlowbiteBoolean; } export interface NavbarCollapseProps extends ComponentProps<"div">, ThemingProps { } export declare const NavbarCollapse: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;