import type { DataRef, Rule, RuleTestResponse } from '@os-team/lexical-rules'; /** * The name of the processing instruction. * See https://www.w3.org/TR/xml/#NT-PITarget */ declare class PITargetRule implements Rule { private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; } export default PITargetRule; //# sourceMappingURL=PITargetRule.d.ts.map