import { CellSpacing } from './index.js'; /** * Resolves table cell spacing to pixels (for border-spacing). * * Handles number (px) or `{ type, value }`. The editor/DOCX decoder often stores * value already in pixels, so we use value as px. If value is in twips (raw OOXML), * type is `'dxa'` and we convert; otherwise value is treated as px. * * @param cellSpacing - Cell spacing value from block attrs * @returns Cell spacing in pixels (always >= 0) */ export declare function getCellSpacingPx(cellSpacing: CellSpacing | number | null | undefined): number; //# sourceMappingURL=cell-spacing.d.ts.map