import { ThemeFonts } from '../core/drawingml/theme-parser.js'; /** * Resolve a `w:rFonts` theme attribute to the typeface it stands for. * * @param value The attribute as written (`minorHAnsi`, `majorBidi`, …). * @param fonts The theme's font scheme, when the part was read. * @returns The typeface, or `undefined` for an unknown slot, a missing theme, * or a slot the theme leaves empty. */ export declare function resolveWordThemeFont(value: string | undefined, fonts: ThemeFonts | undefined): string | undefined;