import React from 'react'; export interface AnchorLinkProps { prefixCls?: string; href: string; target?: string; title: React.ReactNode; children?: React.ReactNode; className?: string; isFirstLevel?: boolean; } declare const AnchorLink: (props: AnchorLinkProps) => React.FunctionComponentElement; export default AnchorLink;