import { type DataRef, type RuleTestResponse } from '@os-team/lexical-rules'; import type { Parser } from './Parser.js'; export type Attribute = [string, string]; /** * The attribute. * See https://www.w3.org/TR/xml/#NT-Attribute */ declare class AttributeParser implements Parser { private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; build(data: Attribute): string; } export default AttributeParser; //# sourceMappingURL=AttributeParser.d.ts.map