import { HTMLAttributes } from 'react'; declare type LinkProps = { /** a 标签的链接 */ href?: string; /** 打开方式 */ target?: string; } & HTMLAttributes; declare const Link: (props: LinkProps) => JSX.Element; export default Link;