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