import React from 'react';
import { StyledProps } from '../common';
import { TdAnchorProps } from './type';
export interface AnchorProps extends TdAnchorProps, StyledProps {
    children?: React.ReactNode;
}
declare const Anchor: React.FunctionComponent<AnchorProps & React.RefAttributes<HTMLDivElement>> & {
    AnchorItem: React.FunctionComponent<import("./AnchorItem").AnchorItemProps>;
    AnchorTarget: React.FunctionComponent<import("./AnchorTarget").AnchorTargetProps>;
};
export default Anchor;
