import { type DataRef, type RuleTestResponse } from '@os-team/lexical-rules'; import type { Parser } from './Parser.js'; import { type EntityDef } from './EntityDefParser.js'; export interface GEDecl { type: 'ENTITY'; name: string; entity: EntityDef; } /** * See https://www.w3.org/TR/xml/#NT-GEDecl */ declare class GEDeclParser implements Parser { private readonly entityDefParser; private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; build(data: GEDecl): string; } export default GEDeclParser; //# sourceMappingURL=GEDeclParser.d.ts.map