/** * DOCX Reader - Paragraph and Section Properties Parsers * * Pure parsers for `w:pPr` (paragraph properties) and `w:sectPr` (section * properties). Both are large and have inter-dependencies (paragraphs may * embed section properties); they're co-located here. */ import type { XmlElement } from "../../xml/types.js"; import type { ParagraphProperties, SectionProperties } from "../types.js"; declare function parseParagraphProperties(pPrEl: XmlElement): ParagraphProperties; declare function parseSectionProperties(sectPrEl: XmlElement): SectionProperties; export { parseParagraphProperties, parseSectionProperties };