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