import { TypographyProps as AntTypographyProps } from "antd"; import { LinkProps as AntLinkProps } from "antd/lib/typography/Link"; import { TextProps as AntTextProps } from "antd/lib/typography/Text"; import { TitleProps as AntTitleProps } from "antd/lib/typography/Title"; import { ParagraphProps as AntParagraphProps } from "antd/lib/typography/Paragraph"; export type TypographyProps = AntTypographyProps; export type LinkProps = AntLinkProps; export type TextProps = AntTextProps; export type TitleProps = AntTitleProps; export type ParagraphProps = AntParagraphProps;