import type * as slate from 'slate'; import type { RichTextViewerProps } from '../RichTextViewer.types'; export declare const htmlToSlateMap: { readonly h1: "heading-1"; readonly h2: "heading-2"; readonly h3: "heading-3"; readonly h4: "heading-4"; readonly ul: "unordered-list"; readonly ol: "ordered-list"; readonly li: "list-item"; readonly table: "table"; readonly tr: "table-row"; readonly td: "table-cell"; readonly th: "table-cell"; readonly tbody: "table-body"; readonly thead: "table-head"; readonly p: "paragraph"; readonly img: "image"; readonly b: "skip"; readonly del: "skip"; readonly i: "skip"; readonly a: "skip"; }; export declare const inlineHtmlToStyleMap: { readonly b: "bold"; readonly del: "line-through"; readonly i: "italic"; readonly a: "href"; }; export declare const convertHtml: (html: string, interactionRenderers?: RichTextViewerProps["interactionRenderers"]) => (slate.Element | slate.Text)[]; //# sourceMappingURL=htmlConverter.d.ts.map