import React from 'react'; export interface UniversalLinkProps extends Omit, 'href'> { /** 链接目标:内部路由、hash 锚点或外部 URL */ to: string; } /** * 统一的链接组件,用于替换原生 标签 * - 内部路由(/dashboard)→ react-router Link * - Hash 锚点(#section)→ * - 外链(https://...)→ */ export declare const UniversalLink: React.ForwardRefExoticComponent>;