/** html style的段落间距相关的尺寸大小转 word xml属性的数值大小
* mso-para-margin-top: w:beforeLines
* mso-para-margin-bottom: w:afterLines
* mso-para-margin-right: gd-> w:ind-w:rightChars cm/pt -> w:ind-w:right
* mso-para-margin-left: gd-> w:ind-w:leftChars cm/pt -> w:ind-w:left
* line-height: /w:line
* text-indent负数时:w:ind-w:hanging,
* text-indent:正数 w:ind-w:firstLine
* mso-char-indent-count: w:ind-w:firstLineChars
* **/
export declare const htmlSpacingSizeToWordSizeNumber: (size: number | string, wordPtFontSize?: number) => number;
export declare const splitHtmlMarginString: (marginStr: string | number) => string[];