import { type DataRef, type RuleTestResponse } from '@os-team/lexical-rules'; import type { Parser } from './Parser.js'; /** * The end-tag for an element. * See https://www.w3.org/TR/xml/#NT-ETag */ declare class ETagParser implements Parser { private readonly name; private readonly rule; constructor(name: string); test(ref: DataRef, pos: number): RuleTestResponse; build(): string; } export default ETagParser; //# sourceMappingURL=ETagParser.d.ts.map