/** * Markup parser — converts HTML strings to ContentUnit (raw-only). * * Every inline element becomes an indexed tag whose style is the verbatim * opening tag in canonical form (see canonical-tag.ts). No element-to- * semantic-style mapping — wrappers round-trip exactly. * * @module content/parser/MarkupParser */ import type { IParser } from './IParser.js'; import type { ContentUnit } from '../types.js'; export declare class MarkupParser implements IParser { parse(input: string): ContentUnit; private matchTag; private parseAttributes; } //# sourceMappingURL=MarkupParser.d.ts.map