/**
* @description textStyle to html
* @author wangfupeng
*/
import { IDomEditor } from '@wangeditor-next/core';
import { Descendant } from 'slate';
/**
* style to html
* @param textNode slate text node
* @param textHtml text html
* @param editor editor instance
* @returns styled html
*/
export declare function styleToHtml(textNode: Descendant, textHtml: string, editor?: IDomEditor): string;