/** * DocxIR styles, as docx.js style options. * * A mechanical translation: which styles exist and what each one says was * decided by the compiler, and this only renames the fields and restores the * units docx.js expects. Nothing here reads a theme. */ import { type IStylesOptions } from 'docx'; import type { DocxIrStyles } from '../../ir/types'; /** Turn the IR's style set into the options docx.js builds `styles.xml` from. */ export declare function emitStyles(styles: DocxIrStyles): IStylesOptions; //# sourceMappingURL=styles.d.ts.map