UNPKG

388 BTypeScriptView Raw
1import * as React from 'react';
2export interface AnchorLinkBaseProps {
3 prefixCls?: string;
4 href: string;
5 target?: string;
6 title: React.ReactNode;
7 className?: string;
8 replace?: boolean;
9}
10export interface AnchorLinkProps extends AnchorLinkBaseProps {
11 children?: React.ReactNode;
12}
13declare const AnchorLink: React.FC<AnchorLinkProps>;
14export default AnchorLink;