import React, { ReactNode, MutableRefObject } from "react"; import { BSDiv, Sizes, SizesAbbr } from "../../types"; export interface NavbarRenderProps { set: (v: boolean) => void; visible: boolean; ref: MutableRefObject; className?: string; } export interface NavbarProps extends BSDiv { color?: "light" | "dark"; container?: "sm" | "md" | "lg" | "xl" | "xxl" | "fluid" | boolean; expand?: Sizes | SizesAbbr | false; children?: ReactNode | ((p: NavbarRenderProps) => ReactNode); brand?: ReactNode; } export declare const Navbar: React.ForwardRefExoticComponent>;