import React from 'react'; interface Props { /** * 段落左缩进距离。单位为 1/20 磅。 */ left?: number; /** * 段落右缩进距离。单位为 1/20 磅。 */ right?: number; /** * 首行缩进距离。单位为 1/20 磅。 */ firstLine?: number; } /** * 段落缩进 * * 参考文档:https://docs.microsoft.com/zh-cn/dotnet/api/documentformat.openxml.wordprocessing.indentation?view=openxml-2.8.1 */ declare const Indentation: (props: Props) => React.ReactElement>; export default Indentation;