import { TextProps } from 'antd/es/typography/Text';
import { FC } from 'react';
import { TYPOGRAPHY_TEXT } from '../../../Types';
export interface ITypographyText {
    ctype: typeof TYPOGRAPHY_TEXT;
    props: TextProps;
}
declare const TypographyText: FC<ITypographyText>;
export default TypographyText;
