import { BodyElement, StyleSheet } from '../document-model/index.js'; /** * Apply table styles across a body (ECMA-376 ยง17.7.6): for each table, fold its * `basedOn` chain and apply the base + `tblLook`-gated conditional region layers * to every cell's chrome (shading, borders, margins) and run/paragraph text, as * a fallback under direct formatting. Recurses into nested tables and shape * text. Mutates the tree IN PLACE and returns it. */ export declare function resolveTableStyles(body: ReadonlyArray, sheet: StyleSheet): ReadonlyArray;