import React from 'react'; import type { TypographyProps as TypographyTypographyProps } from 'antd/es/typography/Typography'; import Text from './Text'; import Title from './Title'; import Paragraph from './Paragraph'; import Subtitle from './Subtitle'; interface InternalTypographyProps extends TypographyTypographyProps { component?: string; } declare const RefTypography: React.ForwardRefExoticComponent>>; export declare type TypographyProps = typeof RefTypography & { Text: typeof Text; Title: typeof Title; Paragraph: typeof Paragraph; Subtitle: typeof Subtitle; }; declare const Typography: TypographyProps; export { Typography }; export default Typography;