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