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