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