import { type DataRef, type RuleTestResponse } from '@os-team/lexical-rules'; import type { Parser } from './Parser.js'; export interface STag { type: 'START_TAG'; name: string; attrs?: Record; } /** * The start-tag for an element. * See https://www.w3.org/TR/xml/#NT-STag */ declare class STagParser implements Parser { private readonly attributeParser; private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; build(data: STag): string; } export default STagParser; //# sourceMappingURL=STagParser.d.ts.map