import { AnchorProps } from 'antd';
import { FC } from 'react';
import { ANCHOR } from '../../Types';
export interface IAnchor {
    ctype: typeof ANCHOR;
    props: AnchorProps;
}
declare const Anchor: FC<IAnchor>;
export default Anchor;
