import { ILangReader } from '@stoplight/lang'; import * as Unist from '@stoplight/unist'; export declare class HTMLReader implements ILangReader { fromLang(html: string): Unist.IParent; toLang(data: any): string; toReact(html: string, config?: object): any; sanitize(html: string): string; format(html: string): string; }