import React, { FunctionComponent } from 'react'; import { TdAnchorTargetProps } from './type'; import { StyledProps } from '../common'; export interface AnchorTargetProps extends TdAnchorTargetProps, StyledProps { children?: React.ReactNode; } declare const AnchorTarget: FunctionComponent; export default AnchorTarget;