import React from 'react'; interface Props { /** * 字体 */ fontFamily: string; } /** * 运行文本字体 * * 参考文档:https://docs.microsoft.com/zh-cn/dotnet/api/documentformat.openxml.wordprocessing.runfonts?view=openxml-2.8.1 */ declare const RunFonts: ({ fontFamily }: Props) => React.ReactElement<{ eastAsia: string; ascii: string; hAnsi: string; }, string | React.JSXElementConstructor>; export default RunFonts;