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