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