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