import Parent from '../../../block/base/parent'; import { TBlockPath } from '../../../block/types'; import Muya from '../../../index'; import { IHtmlBlockState } from '../../../state/types'; declare class HTMLBlock extends Parent { static blockName: string; static create(muya: Muya, state: IHtmlBlockState): HTMLBlock; get path(): (string | number)[]; constructor(muya: Muya); queryBlock(path: TBlockPath): import("../../base/content").default | this | null; getState(): IHtmlBlockState; } export default HTMLBlock;