import { Package, StyleFamily, StyleProperties, XmlElement } from "odf.js"; //#region src/edit/odt/props.d.ts declare const STYLE_NAME_ATTR = "text:style-name"; declare function readCurrentStyleProperties(pkg: Package, element: XmlElement, family: StyleFamily): StyleProperties; declare function applyStyleChange(pkg: Package, element: XmlElement, family: StyleFamily, change: Partial): void; //#endregion export { STYLE_NAME_ATTR, applyStyleChange, readCurrentStyleProperties };