/** * DOCX Reader - Misc Metadata Parsers * * Parses small document metadata XML files that don't justify their own files: * - webSettings.xml (WebSettings) * - people.xml (PersonInfo[]) * * Theme and settings parsing live in `theme-parser.ts` and `settings-parser.ts`. * Re-exports them for backward compatibility. */ import type { PersonInfo, WebSettings } from "../types.js"; export { parseThemeXml } from "./theme-parser.js"; export { parseSettingsXml } from "./settings-parser.js"; /** Parse word/webSettings.xml. */ export declare function parseWebSettings(xmlStr: string): WebSettings; /** Parse word/people.xml. */ export declare function parsePeople(xmlStr: string): PersonInfo[];