import { FC } from "react"; interface NvNavbarMainProps { className?: string; children: React.ReactElement | React.ReactElement[]; } /** * Functional component representing the main navigation bar. */ declare const NvNavbarMain: FC; export default NvNavbarMain;