import type { RuleTestResponse } from '@os-team/lexical-rules'; import type { DataWithOptionsRef, Parser } from './Parser.js'; import { type Content } from './ContentParser.js'; export interface Tag { type: 'TAG'; name: string; content: Content; attrs?: Record; } /** * The tag. */ declare class TagParser implements Parser { private readonly sTagParser; private readonly contentParser; constructor(); test(ref: DataWithOptionsRef, pos: number): RuleTestResponse; build(data: Tag): string; } export default TagParser; //# sourceMappingURL=TagParser.d.ts.map