import type { HtmlJsonNode, ObjectStyle } from "@iimm/shared"; import type { HtmlJsonNodeParserOptions, HtmlXmlParamsParagrapNode, GetImageStepTwoParamsFn } from "../../../types/index"; /** 从段落的style属性(已转化成了对象)获取段落格式参数 */ export declare const getParagraphParamsFromStyle: (styles?: ObjectStyle, onlyHans?: boolean, styleCamelCase?: boolean) => HtmlXmlParamsParagrapNode; export declare const paragraphHtmlJsonNodeParser: (node: HtmlJsonNode, getImageStepTwoParamsFn?: GetImageStepTwoParamsFn, options?: HtmlJsonNodeParserOptions) => Promise;