/**
 * @description elem -> html
 * @author wangfupeng
 */
import { Element } from 'slate';
import { IDomEditor } from '../editor/interface';
import type { INodeToHtmlOptions } from './node2html';
declare function elemToHtml(elemNode: Element, editor: IDomEditor, options?: INodeToHtmlOptions): string;
export default elemToHtml;
