import * as React from 'react'; import { type NavLinkProps } from 'react-router-dom'; /** * Enhanced NavLink component that extends react-router-dom's NavLink * with support for hash links (anchor navigation) and smooth scrolling. */ declare const NavLink: React.ForwardRefExoticComponent>; export { NavLink }; export type { NavLinkProps };