import type { XmlElementGenerationConfig, XmlNode, HtmlXmlParamsTableRow } from "../../../../types/index"; /** * 解析并转换后的表格行的xml参数节点转换为xml的js对象 ``` `虽然xml里可以有行w:jc(https://learn.microsoft.com/zh-cn/dotnet/api/documentformat.openxml.wordprocessing.tablerowproperties?view=openxml-2.8.1),但粘贴的html里没有行的水平对齐方式的属性` ``` */ export declare const tableRowXmlParamsNodeToXmlElementObj: (tableRowNode: HtmlXmlParamsTableRow, config?: XmlElementGenerationConfig) => XmlNode;