import { FC, PropsWithChildren } from "react"; interface NvNavbarEndProps { className?: string; } /** * Functional component representing the end section of the NvNavbar. * * @component */ declare const NvNavbarEnd: FC>; export default NvNavbarEnd;