import { TableCell } from 'docx'; import type { DigitTableCellNode } from '../types'; import { type TableContext } from './table'; /** * Convert digit-editor table_cell node to DOCX TableCell * * @param node - digit-editor table_cell node * @param ctx - Table context with colWidths and options * @returns DOCX TableCell object */ export declare function convertDigitTableCell(node: DigitTableCellNode, ctx: TableContext): Promise; /** * Create an empty continuation cell for vertically merged cells. * In OOXML, a cell with rowSpan needs continuation cells in subsequent rows. */ export declare function createVerticalMergeContinuation(): TableCell;