import React from 'react'; interface Props { /** * 行间距 */ line?: number; /** * 上边距 */ before?: number; /** * 下边距 */ after?: number; /** * 指定行间距的计算方式。 */ lineRule?: 'auto' | 'exact'; } /** * 间距 * * 参考文档:https://docs.microsoft.com/zh-cn/dotnet/api/documentformat.openxml.wordprocessing.spacingbetweenlines?view=openxml-2.8.1 */ declare const Spacing: (props: Props) => React.ReactElement>; export default Spacing;