import type { Document } from '@contentful/rich-text-types'; export { htmlToRtfInlines } from './inlineHtml.js'; /** * Converts a subset of HTML to a Contentful Rich Text document. * Supported block tags: h1–h6, p, ul, ol, li, blockquote, hr, table (basic), div (flattened). */ export declare function htmlToRtf(html: string): Document; //# sourceMappingURL=fromHtml.d.ts.map