import { TableCell } from 'docx'; import { type DocxOptions } from '../option'; import type { TableCellNode } from '../types'; /** * Convert TipTap table cell node to DOCX TableCell * * @param node - TipTap table cell node * @param options - Table options from PropertiesOptions * @returns DOCX TableCell object */ export declare function convertTableCell(node: TableCellNode, options: DocxOptions['table']): Promise;