import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import '@douyinfe/semi-foundation/lib/es/typography/typography.css'; import { BaseProps } from '../_base/baseComponent'; interface TypographyProps extends BaseProps { component?: React.ElementType; forwardRef?: React.RefObject; tooltipRef?: React.RefObject; } declare class Typography extends PureComponent { static defaultProps: { component: string; style: {}; className: string; }; static propTypes: { component: PropTypes.Requireable; style: PropTypes.Requireable; className: PropTypes.Requireable; }; render(): React.JSX.Element; } export default Typography;