import Parent from '../../../block/base/parent'; import Muya from '../../../index'; import { IHtmlBlockState, TState } from '../../../state/types'; declare class HTMLPreview extends Parent { html: string; static blockName: string; static create(muya: Muya, state: IHtmlBlockState): HTMLPreview; get path(): never[]; constructor(muya: Muya, { text }: IHtmlBlockState); update(html?: string): void; getState(): TState; } export default HTMLPreview;