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