import type { HTMLAttributeAnchorTarget, CSSProperties } from 'react';
import './style/index.less';
interface GuideLinkProps {
className?: string;
style?: CSSProperties;
title?: string;
/**
* @description 链接地址
*/
href: string;
/**
* @description 打开链接的目标位置
*/
target?: HTMLAttributeAnchorTarget;
/**
* @description 可见范围:
* [all] 所有可见, 包括生态
* [alibaba] 原厂可见
* [alibaba-wb] 阿里巴巴原厂,外包,实习生
*/
showType?: 'all' | 'alibaba' | 'alibaba-wb';
}
export declare const GuideLink: {
(props: GuideLinkProps): JSX.Element | null;
defaultProps: {
title: string;
target: string;
showType: string;
};
};
export {};