import { FC, PropsWithChildren } from "react"; interface NvNavbarStartProps { className?: string; } /** * Functional component representing the start section of the navbar. */ declare const NvNavbarStart: FC>; export default NvNavbarStart;