/** * DOCX Reader - Styles Parser * * Parses `word/styles.xml` (`DocDefaults` + `StyleDef[]`). Splits out from * the legacy `styles-numbering-parsers.ts` to mirror the writer side * (`styles-writer.ts` and `numbering-writer.ts` are already separate). */ import type { DocDefaults, StyleDef } from "../types.js"; export declare function parseStyles(xmlStr: string): { docDefaults?: DocDefaults; styles: StyleDef[]; };