import { Element as SlateElement, Text as SlateText } from 'slate'; export declare const slateToHtmlMap: { link: string; 'heading-1': string; 'heading-2': string; 'heading-3': string; 'heading-4': string; 'unordered-list': string; 'ordered-list': string; 'list-item': string; 'block-quote': string; 'code-block': string; 'horizontal-rule': string; table: string; 'table-head': string; 'table-body': string; 'table-row': string; 'table-cell': string; text: string; paragraph: string; bold: string; 'line-through': string; italic: string; code: string; href: string; image: string; }; export declare const constructHtml: (nodes: (SlateElement | SlateText)[]) => Node[]; export declare const convertSlateToHtml: (nodes: (SlateElement | SlateText)[]) => string; //# sourceMappingURL=slateConverter.d.ts.map