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<AnchorTargetProps>;
export default AnchorTarget;
