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