import { ExternalHyperlink, TextRun } from 'docx'; import { type TextNode } from '../types'; /** * Convert TipTap text node to DOCX TextRun or ExternalHyperlink * * @param node - TipTap text node * @returns DOCX TextRun or ExternalHyperlink */ export declare const convertText: (node: TextNode) => TextRun | ExternalHyperlink; /** * Convert TipTap hardBreak node to DOCX TextRun with break * * @returns DOCX TextRun with break */ export declare const convertHardBreak: () => TextRun;