import { LinkProps } from 'antd/es/typography/Link';
import { FC } from 'react';
import { TYPOGRAPHY_LINK } from '../../../Types';
export interface ITypographyLink {
    ctype: typeof TYPOGRAPHY_LINK;
    props: LinkProps;
}
declare const TypographyLink: FC<ITypographyLink>;
export default TypographyLink;
