import React from 'react'; import { Props } from './Typography'; type FontType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'subtitle1' | 'subtitle2' | 'body1' | 'body2' | 'caption' | 'overline'; /** * 创建字体排版组件 * * @param type 字体排版类型 * @param displayName 组件显示名称 */ declare function createTypography(type: FontType, displayName: string): React.ForwardRefExoticComponent & React.RefAttributes>; export default createTypography;