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