/** * DOCX Reader - Document Properties Parsers * * Parses standard OPC document properties XML files: * - docProps/core.xml (CoreProperties — title, author, dc:* fields) * - docProps/app.xml (AppProperties — application info) * - docProps/custom.xml (CustomProperty[] — user-defined name/value pairs) * - word/fontTable.xml (FontDef[] — embedded font references) */ import type { AppProperties, CoreProperties, CustomProperty, FontDef } from "../types.js"; declare function parseCoreProps(xmlStr: string): CoreProperties; declare function parseAppProps(xmlStr: string): AppProperties; declare function parseCustomPropsXml(xmlStr: string): CustomProperty[]; declare function parseFontTableXml(xmlStr: string): FontDef[]; export { parseCoreProps, parseAppProps, parseCustomPropsXml, parseFontTableXml };