/**
 * @description to html
 * @author wangfupeng
 */
import { IDomEditor } from '@wangeditor-next/core';
import { Element } from 'slate';
declare function tableToHtml(elemNode: Element, childrenHtml: string, editor?: IDomEditor): string;
declare function tableRowToHtml(elem: Element, childrenHtml: string, editor?: IDomEditor): string;
declare function tableCellToHtml(cellNode: Element, childrenHtml: string): string;
export declare const tableToHtmlConf: {
    type: string;
    elemToHtml: typeof tableToHtml;
};
export declare const tableRowToHtmlConf: {
    type: string;
    elemToHtml: typeof tableRowToHtml;
};
export declare const tableCellToHtmlConf: {
    type: string;
    elemToHtml: typeof tableCellToHtml;
};
export {};
