import { ComponentProps, FC } from 'react'; import { DeepPartial, IBoolean } from '../../types/types'; import { NavbarProps } from './Navbar'; export interface NavbarCollapseTheme { base: string; hidden: IBoolean; } export interface NavbarCollapseProps extends ComponentProps<"div"> { theme?: DeepPartial; links?: NavbarProps["links"]; linkClassName?: string; } export declare const NavbarCollapse: FC; //# sourceMappingURL=navbar-collapse.d.ts.map