/// interface Props { /** * 文本大小。单位为:半磅。 */ fontSize: number; } /** * 字体大小。(注意:字体大小的单位是“半磅") * * 参考文档:https://docs.microsoft.com/zh-cn/dotnet/api/documentformat.openxml.wordprocessing.fontsize?view=openxml-2.8.1 */ declare const FontSize: ({ fontSize }: Props) => JSX.Element; export default FontSize;