import { ParagraphProps } from 'antd/es/typography/Paragraph';
import { FC } from 'react';
import { TYPOGRAPHY_PARAGRAPH } from '../../../Types';
export interface ITypographyParagraph {
    ctype: typeof TYPOGRAPHY_PARAGRAPH;
    props: ParagraphProps;
}
declare const TypographyParagraph: FC<ITypographyParagraph>;
export default TypographyParagraph;
