import { TitleProps } from 'antd/es/typography/Title';
import { FC } from 'react';
import { TYPOGRAPHY_TITLE } from '../../../Types';
export interface ITypographyTitle {
    ctype: typeof TYPOGRAPHY_TITLE;
    props: TitleProps;
}
declare const TypographyTitle: FC<ITypographyTitle>;
export default TypographyTitle;
