/** * DOCX Reader - Table Properties Parsers * * Pure parsers for `w:tblPr`, `w:tblBorders`, `w:tcMar` (cell margins). * Used by both the inline table parser and the styles parser. */ import type { XmlElement } from "../../xml/types.js"; import type { TableBorders, TableCellMargins, TableProperties } from "../types.js"; declare function parseTableBorders(el: XmlElement): TableBorders; declare function parseTableCellMargins(el: XmlElement): TableCellMargins; declare function parseTableProperties(el: XmlElement): TableProperties; export { parseTableBorders, parseTableCellMargins, parseTableProperties };