import { type DataRef, type RuleTestResponse } from '@os-team/lexical-rules'; import type { Parser } from './Parser.js'; export interface Mixed { type: 'MIXED'; items?: string[]; } /** * The mixed-content declaration. * See https://www.w3.org/TR/xml/#NT-Mixed */ declare class MixedParser implements Parser { private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; build(data: Mixed): string; } export default MixedParser; //# sourceMappingURL=MixedParser.d.ts.map