import { type DataRef, type RuleTestResponse } from '@os-team/lexical-rules'; import type { Parser } from './Parser.js'; import { type GEDecl } from './GEDeclParser.js'; import { type PEDecl } from './PEDeclParser.js'; export type EntityDecl = GEDecl | PEDecl; /** * The entity declaration. * See https://www.w3.org/TR/xml/#NT-EntityDecl */ declare class EntityDeclParser implements Parser { private readonly geDeclParser; private readonly peDeclParser; private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; build(data: EntityDecl): string; } export default EntityDeclParser; //# sourceMappingURL=EntityDeclParser.d.ts.map