import { type DataRef, type RuleTestResponse } from '@os-team/lexical-rules'; import type { Parser } from './Parser.js'; import { type PI } from './PIParser.js'; export type Misc = PI | undefined; /** * The misc. * See https://www.w3.org/TR/xml/#NT-Misc */ declare class MiscParser implements Parser { private readonly piParser; private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; build(data: Misc): string; } export default MiscParser; //# sourceMappingURL=MiscParser.d.ts.map