import { type DataRef, type RuleTestResponse } from '@os-team/lexical-rules'; import { type Parser } from './Parser.js'; import { type ContentSpec } from './ContentSpecParser.js'; export interface ElementDecl { type: 'ELEMENT'; name: string; content: ContentSpec; } /** * The element type declaration. * See https://www.w3.org/TR/xml/#NT-elementdecl */ declare class ElementDeclParser implements Parser { private readonly contentSpecParser; private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; build(data: ElementDecl): string; } export default ElementDeclParser; //# sourceMappingURL=ElementDeclParser.d.ts.map