import React from 'react'; import { type NavLinkProps } from 'react-router-dom'; export interface ActiveLinkProps extends Omit { to: string; } /** * ActiveLink 组件 * * 替换 react-router-dom 的 NavLink,扩展支持 hash 路由跳转和激活态功能 * * @example * // 普通路由跳转 * Dashboard * * // hash 路由跳转 * Section 1 * * // 使用函数式 className 显示激活态 * isActive ? 'active' : ''} * > * Features * */ export declare const ActiveLink: React.ForwardRefExoticComponent>;