import { type ObjectStyle } from '@iimm/shared'; import type { WordXmlFonts } from "../../../types/index"; export declare const htmlFontSizeToWordFontSizeNumber: (fontSize?: string | number) => number; export declare const getFontFamilyFromObjectStyle: (styles?: ObjectStyle, onlyHans?: boolean, styleCamelCase?: boolean) => { fontFamily?: undefined; fonts?: undefined; } | { fontFamily: string; fonts: WordXmlFonts; }; export declare const getLangFromObjectStyle: (styles?: ObjectStyle, styleCamelCase?: boolean) => { lang?: undefined; bidiLang?: undefined; } | { lang: string; bidiLang: string; };