import { FC, PropsWithChildren } from "react"; interface NvNavbarProps { hidingDistance?: number; isVertical?: boolean; className?: string; } /** * React memoized functional component for rendering a navigation bar. * * @param {number} hidingDistance - The distance in pixels for the navigation bar to hide. * @param {boolean} isVertical - A boolean indicating if the navigation bar is vertical. * @param {string} className - Additional CSS class names for styling. * @param {ReactNode} children - The child components to be rendered inside the navigation bar. * @returns A React element representing the navigation bar. */ declare const NvNavbar: FC>; export default NvNavbar;